From 6d9176187e7f1472d51c9dd662ec0af94ccb8bfc Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Fri, 31 Oct 2025 13:22:10 +0200
Subject: [PATCH 1/6] docs: update js client libraries (2.78.0) (#40013)
* docs: update js client libraries (2.78.0)
* fix(docs): add fallback for unhandled schema types in API reference
---------
Co-authored-by: supabase-releaser[bot] <223506987+supabase-releaser[bot]@users.noreply.github.com>
Co-authored-by: Katerina Skroumpelou
---
.../docs/features/docs/Reference.api.utils.ts | 5 +
apps/docs/features/docs/Reference.ui.tsx | 4 +-
.../Reference.typeSpec.test.ts.snap | 66927 +++++++--
apps/docs/spec/api_v1_openapi.json | 788 +-
apps/docs/spec/cli_v1_commands.yaml | 2 +-
apps/docs/spec/common-api-sections.json | 6 +
.../spec/enrichments/tsdoc_v2/combined.json | 115929 ++++++++++++---
.../spec/enrichments/tsdoc_v2/functions.json | 154 +-
.../tsdoc_v2/functions_dereferenced.json | 154 +-
.../spec/enrichments/tsdoc_v2/gotrue.json | 12741 +-
.../tsdoc_v2/gotrue_dereferenced.json | 12741 +-
.../spec/enrichments/tsdoc_v2/postgrest.json | 1866 +-
.../tsdoc_v2/postgrest_dereferenced.json | 1866 +-
.../spec/enrichments/tsdoc_v2/realtime.json | 7559 +-
.../tsdoc_v2/realtime_dereferenced.json | 7559 +-
.../spec/enrichments/tsdoc_v2/storage.json | 37415 +++--
.../tsdoc_v2/storage_dereferenced.json | 37415 +++--
.../spec/enrichments/tsdoc_v2/supabase.json | 64727 +++++++-
.../tsdoc_v2/supabase_dereferenced.json | 64727 +++++++-
.../transforms/api_v1_openapi_deparsed.json | 1844 +-
20 files changed, 351114 insertions(+), 83315 deletions(-)
diff --git a/apps/docs/features/docs/Reference.api.utils.ts b/apps/docs/features/docs/Reference.api.utils.ts
index df0c9f6d1cea5..a8a16e5f3ce2b 100644
--- a/apps/docs/features/docs/Reference.api.utils.ts
+++ b/apps/docs/features/docs/Reference.api.utils.ts
@@ -186,4 +186,9 @@ export function getTypeDisplayFromSchema(schema: ISchema) {
displayName: 'object',
}
}
+
+ // Default fallback for unhandled schema types
+ return {
+ displayName: 'unknown',
+ }
}
diff --git a/apps/docs/features/docs/Reference.ui.tsx b/apps/docs/features/docs/Reference.ui.tsx
index b04fdd9b964ea..5db4ad466c242 100644
--- a/apps/docs/features/docs/Reference.ui.tsx
+++ b/apps/docs/features/docs/Reference.ui.tsx
@@ -442,9 +442,11 @@ function ApiOperationRequestBodyDetailsInternal({
) {
return {schema.type}
} else if (schema.type === 'array') {
+ const itemTypeDisplay = getTypeDisplayFromSchema(schema.items)
+ const displayName = itemTypeDisplay?.displayName ?? 'unknown'
return (
<>
- {`Array of ${getTypeDisplayFromSchema(schema.items).displayName}`}
+ {`Array of ${displayName}`}
{!(
'type' in schema.items &&
['string', 'boolean', 'number', 'integer'].includes(schema.items.type)
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 e97759ada5d17..00fecd84440a7 100644
--- a/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
+++ b/apps/docs/features/docs/__snapshots__/Reference.typeSpec.test.ts.snap
@@ -5,804 +5,252 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "@supabase/supabase-js",
"methods": {
- "@supabase/supabase-js.SupabaseClient.constructor": {
- "name": "@supabase/supabase-js.SupabaseClient.constructor",
+ "@supabase/supabase-js.AuthApiError.constructor": {
+ "name": "@supabase/supabase-js.AuthApiError.constructor",
"params": [
{
- "name": "supabaseUrl",
+ "name": "message",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "comment": {
- "shortText": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
}
},
{
- "name": "supabaseKey",
+ "name": "status",
"type": {
"type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ "name": "number"
}
},
{
- "name": "options",
+ "name": "code",
"type": {
- "name": "SupabaseClientOptions",
- "type": "object",
- "properties": [
- {
- "name": "accessToken",
- "type": {
- "type": "function",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "literal",
- "value": null
- }
- ]
- }
- }
- }
- },
- "isOptional": true,
- "comment": {
- "shortText": "Optional function for using a third-party authentication system with\\nSupabase. The function should return an access token or ID token (JWT) by\\nobtaining it from the third-party auth client library. Note that this\\nfunction may be called concurrently and many times. Use memoization and\\nlocking techniques if this is not supported by the client libraries.\\n\\nWhen set, the \`auth\` namespace of the Supabase client cannot be used.\\nCreate another client if you wish to use Supabase Auth and third-party\\nauthentications concurrently in the same application."
- }
- },
- {
- "name": "auth",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "autoRefreshToken",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Automatically refreshes the token for logged-in users. Defaults to true."
- }
- },
- {
- "name": "debug",
- "type": {
- "type": "nameOnly",
- "name": "SupabaseAuthClientOptions['debug']"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
- }
- },
- {
- "name": "detectSessionInUrl",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
- }
- },
- {
- "name": "flowType",
- "type": {
- "type": "nameOnly",
- "name": "SupabaseAuthClientOptions['flowType']"
- },
- "isOptional": true,
- "comment": {
- "shortText": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
- }
- },
- {
- "name": "lock",
- "type": {
- "type": "nameOnly",
- "name": "SupabaseAuthClientOptions['lock']"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Provide your own locking mechanism based on the environment. By default no locking is done at this time.",
- "tags": [
- {
- "tag": "experimental",
- "text": ""
- }
- ]
- }
- },
- {
- "name": "persistSession",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Whether to persist a logged-in session to storage. Defaults to true."
- }
- },
- {
- "name": "storage",
- "type": {
- "type": "nameOnly",
- "name": "SupabaseAuthClientOptions['storage']"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A storage provider. Used to store the logged-in session."
- }
- },
- {
- "name": "storageKey",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Optional key name used for storing tokens in local storage."
- }
- },
- {
- "name": "userStorage",
- "type": {
- "type": "nameOnly",
- "name": "SupabaseAuthClientOptions['userStorage']"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A storage provider to store the user profile separately from the session.\\nUseful when you need to store the session information in cookies,\\nwithout bloating the data with the redundant user object.",
- "tags": [
- {
- "tag": "experimental",
- "text": ""
- }
- ]
- }
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "db",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "schema",
- "type": {
- "type": "nameOnly",
- "name": "SchemaName"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to \`public\`."
- }
- },
- {
- "name": "global",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "fetch",
- "type": {
- "type": "nameOnly",
- "name": "Fetch"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A custom \`fetch\` implementation."
- }
- },
- {
- "name": "headers",
- "type": {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true,
- "comment": {
- "shortText": "Optional headers for initializing the client."
- }
- }
- ]
- },
- "isOptional": true
- },
+ "type": "union",
+ "subTypes": [
{
- "name": "realtime",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeClientOptions"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Options passed to the realtime-js instance"
- }
+ "type": "intrinsic",
+ "name": "undefined"
},
{
- "name": "storage",
- "type": {
- "type": "nameOnly",
- "name": "StorageClientOptions"
- },
- "isOptional": true
+ "type": "intrinsic",
+ "name": "string"
}
]
- },
- "isOptional": true
+ }
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "SupabaseClient"
+ "name": "AuthApiError"
}
- },
- "comment": {
- "shortText": "Create a new client for use in the browser."
}
},
- "@supabase/supabase-js.SupabaseClient.channel": {
- "name": "@supabase/supabase-js.SupabaseClient.channel",
+ "@supabase/supabase-js.AuthError.constructor": {
+ "name": "@supabase/supabase-js.AuthError.constructor",
"params": [
{
- "name": "name",
+ "name": "message",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "comment": {
- "shortText": "The name of the Realtime channel."
}
},
{
- "name": "opts",
+ "name": "status",
"type": {
- "type": "nameOnly",
- "name": "RealtimeChannelOptions"
+ "type": "intrinsic",
+ "name": "number"
},
- "comment": {
- "shortText": "The options to pass to the Realtime channel."
- }
+ "isOptional": true
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "@supabase/realtime-js.default"
+ "name": "AuthError"
}
- },
- "comment": {
- "shortText": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
}
},
- "@supabase/supabase-js.SupabaseClient.from": {
- "name": "@supabase/supabase-js.SupabaseClient.from",
+ "@supabase/supabase-js.AuthImplicitGrantRedirectError.constructor": {
+ "name": "@supabase/supabase-js.AuthImplicitGrantRedirectError.constructor",
"params": [
{
- "name": "relation",
+ "name": "message",
"type": {
- "type": "nameOnly",
- "name": "TableName"
+ "type": "intrinsic",
+ "name": "string"
}
+ },
+ {
+ "name": "details",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
+ "name": "AuthImplicitGrantRedirectError"
}
- },
- "altSignatures": [
- {
- "params": [
+ }
+ },
+ "@supabase/supabase-js.AuthImplicitGrantRedirectError.toJSON": {
+ "name": "@supabase/supabase-js.AuthImplicitGrantRedirectError.toJSON",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
{
- "name": "relation",
+ "name": "details",
"type": {
- "type": "nameOnly",
- "name": "ViewName"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
}
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
- }
- }
+ ]
}
- ]
+ }
},
- "@supabase/supabase-js.SupabaseClient.getChannels": {
- "name": "@supabase/supabase-js.SupabaseClient.getChannels",
- "params": [],
- "ret": {
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "@supabase/realtime-js.default"
+ "@supabase/supabase-js.AuthInvalidCredentialsError.constructor": {
+ "name": "@supabase/supabase-js.AuthInvalidCredentialsError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
}
- },
- "comment": {
- "shortText": "Returns all Realtime channels."
- }
- },
- "@supabase/supabase-js.SupabaseClient.removeAllChannels": {
- "name": "@supabase/supabase-js.SupabaseClient.removeAllChannels",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
- }
- }
+ "type": "nameOnly",
+ "name": "AuthInvalidCredentialsError"
}
- },
- "comment": {
- "shortText": "Unsubscribes and removes all Realtime channels from Realtime client."
}
},
- "@supabase/supabase-js.SupabaseClient.removeChannel": {
- "name": "@supabase/supabase-js.SupabaseClient.removeChannel",
+ "@supabase/supabase-js.AuthInvalidJwtError.constructor": {
+ "name": "@supabase/supabase-js.AuthInvalidJwtError.constructor",
"params": [
{
- "name": "channel",
+ "name": "message",
"type": {
- "type": "nameOnly",
- "name": "@supabase/realtime-js.default"
- },
- "comment": {
- "shortText": "The name of the Realtime channel."
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"ret": {
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
- }
+ "type": "nameOnly",
+ "name": "AuthInvalidJwtError"
}
- },
- "comment": {
- "shortText": "Unsubscribes and removes Realtime channel from Realtime client."
}
},
- "@supabase/supabase-js.SupabaseClient.rpc": {
- "name": "@supabase/supabase-js.SupabaseClient.rpc",
+ "@supabase/supabase-js.AuthInvalidTokenResponseError.constructor": {
+ "name": "@supabase/supabase-js.AuthInvalidTokenResponseError.constructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthInvalidTokenResponseError"
+ }
+ }
+ },
+ "@supabase/supabase-js.AuthPKCEGrantCodeExchangeError.constructor": {
+ "name": "@supabase/supabase-js.AuthPKCEGrantCodeExchangeError.constructor",
"params": [
{
- "name": "fn",
- "type": {
- "type": "nameOnly",
- "name": "FnName"
- },
- "comment": {
- "shortText": "The function name to call"
- }
- },
- {
- "name": "args",
+ "name": "message",
"type": {
- "type": "nameOnly",
- "name": "Args"
- },
- "comment": {
- "shortText": "The arguments to pass to the function call"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "Count algorithm to use to count rows returned by the\\nfunction. Only applicable for [set-returning\\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
- }
- },
- {
- "name": "get",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "When set to \`true\`, the function will be called with\\nread-only access mode."
- }
- },
- {
- "name": "head",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "When set to \`true\`, \`data\` will not be returned.\\nUseful if you only need the count."
- }
- }
- ]
- },
- "comment": {
- "shortText": "Named parameters"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
- }
- },
- "comment": {
- "shortText": "Perform a function call."
- }
- },
- "@supabase/supabase-js.SupabaseClient.schema": {
- "name": "@supabase/supabase-js.SupabaseClient.schema",
- "params": [
- {
- "name": "schema",
- "type": {
- "type": "nameOnly",
- "name": "DynamicSchema"
- },
- "comment": {
- "shortText": "The schema to query"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default"
- }
- },
- "comment": {
- "shortText": "Select a schema to query or perform an function (rpc) call.\\n\\nThe schema needs to be on the list of exposed schemas inside Supabase."
- }
- }
- }
- },
- {
- "name": "@supabase/auth-js",
- "methods": {
- "@supabase/auth-js.AuthApiError.constructor": {
- "name": "@supabase/auth-js.AuthApiError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "code",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "undefined"
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthApiError"
- }
- }
- },
- "@supabase/auth-js.AuthError.constructor": {
- "name": "@supabase/auth-js.AuthError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "code",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- },
- "@supabase/auth-js.AuthImplicitGrantRedirectError.constructor": {
- "name": "@supabase/auth-js.AuthImplicitGrantRedirectError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "details",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "code",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "error",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthImplicitGrantRedirectError"
- }
- }
- },
- "@supabase/auth-js.AuthImplicitGrantRedirectError.toJSON": {
- "name": "@supabase/auth-js.AuthImplicitGrantRedirectError.toJSON",
- "params": [],
- "ret": {
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "details",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "code",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "error",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- },
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- }
- ]
- }
- }
- },
- "@supabase/auth-js.AuthInvalidCredentialsError.constructor": {
- "name": "@supabase/auth-js.AuthInvalidCredentialsError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthInvalidCredentialsError"
- }
- }
- },
- "@supabase/auth-js.AuthInvalidJwtError.constructor": {
- "name": "@supabase/auth-js.AuthInvalidJwtError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthInvalidJwtError"
- }
- }
- },
- "@supabase/auth-js.AuthInvalidTokenResponseError.constructor": {
- "name": "@supabase/auth-js.AuthInvalidTokenResponseError.constructor",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "AuthInvalidTokenResponseError"
- }
- }
- },
- "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.constructor": {
- "name": "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "details",
+ "name": "details",
"type": {
"type": "union",
"subTypes": [
@@ -830,7 +278,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
]
}
]
- }
+ },
+ "isOptional": true
}
],
"ret": {
@@ -840,8 +289,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.toJSON": {
- "name": "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.toJSON",
+ "@supabase/supabase-js.AuthPKCEGrantCodeExchangeError.toJSON": {
+ "name": "@supabase/supabase-js.AuthPKCEGrantCodeExchangeError.toJSON",
"params": [],
"ret": {
"type": {
@@ -903,8 +352,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.AuthRetryableFetchError.constructor": {
- "name": "@supabase/auth-js.AuthRetryableFetchError.constructor",
+ "@supabase/supabase-js.AuthRetryableFetchError.constructor": {
+ "name": "@supabase/supabase-js.AuthRetryableFetchError.constructor",
"params": [
{
"name": "message",
@@ -928,8 +377,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.AuthSessionMissingError.constructor": {
- "name": "@supabase/auth-js.AuthSessionMissingError.constructor",
+ "@supabase/supabase-js.AuthSessionMissingError.constructor": {
+ "name": "@supabase/supabase-js.AuthSessionMissingError.constructor",
"params": [],
"ret": {
"type": {
@@ -938,8 +387,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.AuthUnknownError.constructor": {
- "name": "@supabase/auth-js.AuthUnknownError.constructor",
+ "@supabase/supabase-js.AuthUnknownError.constructor": {
+ "name": "@supabase/supabase-js.AuthUnknownError.constructor",
"params": [
{
"name": "message",
@@ -963,8 +412,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.AuthWeakPasswordError.constructor": {
- "name": "@supabase/auth-js.AuthWeakPasswordError.constructor",
+ "@supabase/supabase-js.AuthWeakPasswordError.constructor": {
+ "name": "@supabase/supabase-js.AuthWeakPasswordError.constructor",
"params": [
{
"name": "message",
@@ -1011,8 +460,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.CustomAuthError.constructor": {
- "name": "@supabase/auth-js.CustomAuthError.constructor",
+ "@supabase/supabase-js.CustomAuthError.constructor": {
+ "name": "@supabase/supabase-js.CustomAuthError.constructor",
"params": [
{
"name": "message",
@@ -1059,8 +508,96 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.GoTrueAdminApi.constructor": {
- "name": "@supabase/auth-js.GoTrueAdminApi.constructor",
+ "@supabase/supabase-js.FunctionsError.constructor": {
+ "name": "@supabase/supabase-js.FunctionsError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "context",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "FunctionsError"
+ }
+ }
+ },
+ "@supabase/supabase-js.FunctionsFetchError.constructor": {
+ "name": "@supabase/supabase-js.FunctionsFetchError.constructor",
+ "params": [
+ {
+ "name": "context",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "FunctionsFetchError"
+ }
+ }
+ },
+ "@supabase/supabase-js.FunctionsHttpError.constructor": {
+ "name": "@supabase/supabase-js.FunctionsHttpError.constructor",
+ "params": [
+ {
+ "name": "context",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "FunctionsHttpError"
+ }
+ }
+ },
+ "@supabase/supabase-js.FunctionsRelayError.constructor": {
+ "name": "@supabase/supabase-js.FunctionsRelayError.constructor",
+ "params": [
+ {
+ "name": "context",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "FunctionsRelayError"
+ }
+ }
+ },
+ "@supabase/supabase-js.GoTrueAdminApi.constructor": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.constructor",
"params": [
{
"type": {
@@ -1145,8 +682,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
},
- "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor": {
- "name": "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor",
+ "@supabase/supabase-js.GoTrueAdminApi.mfa.deleteFactor": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.mfa.deleteFactor",
"params": [
{
"name": "params",
@@ -1240,8 +777,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Deletes a factor on a user. This will log the user out of all active\\nsessions if the deleted factor was verified."
}
},
- "@supabase/auth-js.GoTrueAdminApi.mfa.listFactors": {
- "name": "@supabase/auth-js.GoTrueAdminApi.mfa.listFactors",
+ "@supabase/supabase-js.GoTrueAdminApi.mfa.listFactors": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.mfa.listFactors",
"params": [
{
"name": "params",
@@ -1385,8 +922,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Lists all factors associated to a user."
}
},
- "@supabase/auth-js.GoTrueAdminApi.oauth.createClient": {
- "name": "@supabase/auth-js.GoTrueAdminApi.oauth.createClient",
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.createClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.createClient",
"params": [
{
"name": "params",
@@ -1594,6 +1131,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Array of allowed grant types"
}
},
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
{
"name": "redirect_uris",
"type": {
@@ -1707,8 +1255,57 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Creates a new OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.oauth.deleteClient": {
- "name": "@supabase/auth-js.GoTrueAdminApi.oauth.deleteClient",
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.deleteClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.deleteClient",
+ "params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.getClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.getClient",
"params": [
{
"name": "clientId",
@@ -1830,6 +1427,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Array of allowed grant types"
}
},
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
{
"name": "redirect_uris",
"type": {
@@ -1940,11 +1548,101 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ "shortText": "Gets details of a specific OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.oauth.getClient": {
- "name": "@supabase/auth-js.GoTrueAdminApi.oauth.getClient",
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.listClients": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.listClients",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "PageParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "page",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The page number"
+ }
+ },
+ {
+ "name": "perPage",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Number of items returned per page"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientListResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "clients"
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Lists all OAuth clients with optional pagination.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.regenerateClientSecret": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.regenerateClientSecret",
"params": [
{
"name": "clientId",
@@ -2066,6 +1764,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Array of allowed grant types"
}
},
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
{
"name": "redirect_uris",
"type": {
@@ -2176,109 +1885,99 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Gets details of a specific OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ "shortText": "Regenerates the secret for an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.oauth.listClients": {
- "name": "@supabase/auth-js.GoTrueAdminApi.oauth.listClients",
+ "@supabase/supabase-js.GoTrueAdminApi.oauth.updateClient": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.oauth.updateClient",
"params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
"name": "params",
"type": {
- "name": "PageParams",
+ "name": "UpdateOAuthClientParams",
"type": "object",
"properties": [
{
- "name": "page",
+ "name": "client_name",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
"isOptional": true,
"comment": {
- "shortText": "The page number"
+ "shortText": "Human-readable name of the OAuth client"
}
},
{
- "name": "perPage",
+ "name": "client_uri",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
"isOptional": true,
"comment": {
- "shortText": "Number of items returned per page"
+ "shortText": "URI of the OAuth client"
}
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "name": "OAuthClientListResponse",
- "subTypes": [
+ },
{
- "type": "object",
- "properties": [
- {
- "name": "data"
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
}
- ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
},
{
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "clients"
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
}
]
}
}
- },
- "comment": {
- "shortText": "Lists all OAuth clients with optional pagination.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
- }
- },
- "@supabase/auth-js.GoTrueAdminApi.oauth.regenerateClientSecret": {
- "name": "@supabase/auth-js.GoTrueAdminApi.oauth.regenerateClientSecret",
- "params": [
- {
- "name": "clientId",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
],
"ret": {
"type": {
@@ -2392,6 +2091,17 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Array of allowed grant types"
}
},
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
{
"name": "redirect_uris",
"type": {
@@ -2502,11 +2212,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Regenerates the secret for an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ "shortText": "Updates an existing OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.createUser": {
- "name": "@supabase/auth-js.GoTrueAdminApi.createUser",
+ "@supabase/supabase-js.GoTrueAdminApi.createUser": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.createUser",
"params": [
{
"name": "attributes",
@@ -2671,7 +2381,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -3183,8 +2893,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Creates a new user.\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.deleteUser": {
- "name": "@supabase/auth-js.GoTrueAdminApi.deleteUser",
+ "@supabase/supabase-js.GoTrueAdminApi.deleteUser": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.deleteUser",
"params": [
{
"name": "id",
@@ -3202,6 +2912,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "intrinsic",
"name": "boolean"
},
+ "isOptional": true,
"comment": {
"shortText": "If true, then the user will be soft-deleted from the auth schema. Soft deletion allows user identification from the hashed user ID but is not reversible.\\nDefaults to false for backward compatibility.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
@@ -3228,7 +2939,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -3740,8 +3451,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Delete a user. Requires a \`service_role\` key."
}
},
- "@supabase/auth-js.GoTrueAdminApi.generateLink": {
- "name": "@supabase/auth-js.GoTrueAdminApi.generateLink",
+ "@supabase/supabase-js.GoTrueAdminApi.generateLink": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.generateLink",
"params": [
{
"name": "params",
@@ -3999,7 +3710,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -4518,8 +4229,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Generates email links and OTPs to be sent via a custom email provider."
}
},
- "@supabase/auth-js.GoTrueAdminApi.getUserById": {
- "name": "@supabase/auth-js.GoTrueAdminApi.getUserById",
+ "@supabase/supabase-js.GoTrueAdminApi.getUserById": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.getUserById",
"params": [
{
"name": "uid",
@@ -4553,7 +4264,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -5065,8 +4776,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Get user by id."
}
},
- "@supabase/auth-js.GoTrueAdminApi.inviteUserByEmail": {
- "name": "@supabase/auth-js.GoTrueAdminApi.inviteUserByEmail",
+ "@supabase/supabase-js.GoTrueAdminApi.inviteUserByEmail": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.inviteUserByEmail",
"params": [
{
"name": "email",
@@ -5107,6 +4818,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
+ "isOptional": true,
"comment": {
"shortText": "Additional options to be included when inviting."
}
@@ -5133,7 +4845,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -5645,8 +5357,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Sends an invite link to an email address."
}
},
- "@supabase/auth-js.GoTrueAdminApi.listUsers": {
- "name": "@supabase/auth-js.GoTrueAdminApi.listUsers",
+ "@supabase/supabase-js.GoTrueAdminApi.listUsers": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.listUsers",
"params": [
{
"name": "params",
@@ -5737,8 +5449,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Get a list of users.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
}
},
- "@supabase/auth-js.GoTrueAdminApi.signOut": {
- "name": "@supabase/auth-js.GoTrueAdminApi.signOut",
+ "@supabase/supabase-js.GoTrueAdminApi.signOut": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.signOut",
"params": [
{
"name": "jwt",
@@ -5769,6 +5481,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
+ "isOptional": true,
"comment": {
"shortText": "The logout sope."
}
@@ -5812,8 +5525,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Removes a logged-in session."
}
},
- "@supabase/auth-js.GoTrueAdminApi.updateUserById": {
- "name": "@supabase/auth-js.GoTrueAdminApi.updateUserById",
+ "@supabase/supabase-js.GoTrueAdminApi.updateUserById": {
+ "name": "@supabase/supabase-js.GoTrueAdminApi.updateUserById",
"params": [
{
"name": "uid",
@@ -5988,7 +5701,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -6500,8 +6213,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Updates the user data."
}
},
- "@supabase/auth-js.GoTrueClient.constructor": {
- "name": "@supabase/auth-js.GoTrueClient.constructor",
+ "@supabase/supabase-js.GoTrueClient.constructor": {
+ "name": "@supabase/supabase-js.GoTrueClient.constructor",
"params": [
{
"name": "options",
@@ -6756,8 +6469,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Create a new client for use in the browser."
}
},
- "@supabase/auth-js.GoTrueClient.mfa.challenge": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.challenge",
+ "@supabase/supabase-js.GoTrueClient.mfa.challenge": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.challenge",
"params": [
{
"name": "params",
@@ -7338,8 +7051,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify",
+ "@supabase/supabase-js.GoTrueClient.mfa.challengeAndVerify": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.challengeAndVerify",
"params": [
{
"name": "params",
@@ -7431,7 +7144,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -7934,8 +7647,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Helper method which creates a challenge and immediately uses the given code to verify against it thereafter. The verification code is\\nprovided by the user by entering a code seen in their authenticator app."
}
},
- "@supabase/auth-js.GoTrueClient.mfa.enroll": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.enroll",
+ "@supabase/supabase-js.GoTrueClient.mfa.enroll": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.enroll",
"params": [
{
"name": "params",
@@ -8355,8 +8068,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel",
+ "@supabase/supabase-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel",
"params": [],
"ret": {
"type": {
@@ -8510,8 +8223,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Returns the Authenticator Assurance Level (AAL) for the active session.\\n\\n- \`aal1\` (or \`null\`) means that the user's identity has been verified only\\nwith a conventional login (email+password, OTP, magic link, social login,\\netc.).\\n- \`aal2\` means that the user's identity has been verified both with a conventional login and at least one MFA factor.\\n\\nAlthough this method returns a promise, it's fairly quick (microseconds)\\nand rarely uses the network. You can use this to check whether the current\\nuser needs to be shown a screen to verify their MFA factors."
}
},
- "@supabase/auth-js.GoTrueClient.mfa.listFactors": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.listFactors",
+ "@supabase/supabase-js.GoTrueClient.mfa.listFactors": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.listFactors",
"params": [],
"ret": {
"type": {
@@ -8559,8 +8272,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Returns the list of MFA factors enabled for this user."
}
},
- "@supabase/auth-js.GoTrueClient.mfa.unenroll": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.unenroll",
+ "@supabase/supabase-js.GoTrueClient.mfa.unenroll": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.unenroll",
"params": [
{
"name": "params",
@@ -8644,8 +8357,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Unenroll removes a MFA factor.\\nA user has to have an \`aal2\` authenticator level in order to unenroll a \`verified\` factor."
}
},
- "@supabase/auth-js.GoTrueClient.mfa.verify": {
- "name": "@supabase/auth-js.GoTrueClient.mfa.verify",
+ "@supabase/supabase-js.GoTrueClient.mfa.verify": {
+ "name": "@supabase/supabase-js.GoTrueClient.mfa.verify",
"params": [
{
"name": "params",
@@ -8747,7 +8460,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -9352,7 +9065,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -9947,7 +9660,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -10532,7 +10245,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -11034,14 +10747,37 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
- "@supabase/auth-js.GoTrueClient.exchangeCodeForSession": {
- "name": "@supabase/auth-js.GoTrueClient.exchangeCodeForSession",
+ "@supabase/supabase-js.GoTrueClient.oauth.approveAuthorization": {
+ "name": "@supabase/supabase-js.GoTrueClient.oauth.approveAuthorization",
"params": [
{
- "name": "authCode",
+ "name": "authorizationId",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID to approve"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional parameters including skipBrowserRedirect"
}
}
],
@@ -11051,7 +10787,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "AuthTokenResponse",
+ "name": "AuthOAuthConsentResponse",
"subTypes": [
{
"type": "object",
@@ -11063,370 +10799,820 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "object",
"properties": [
{
- "name": "session",
+ "name": "redirect_url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL to redirect the user back to the OAuth client"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Approves an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.oauth.denyAuthorization": {
+ "name": "@supabase/supabase-js.GoTrueClient.oauth.denyAuthorization",
+ "params": [
+ {
+ "name": "authorizationId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID to deny"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional parameters including skipBrowserRedirect"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthConsentResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "redirect_url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL to redirect the user back to the OAuth client"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Denies an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.oauth.getAuthorizationDetails": {
+ "name": "@supabase/supabase-js.GoTrueClient.oauth.getAuthorizationDetails",
+ "params": [
+ {
+ "name": "authorizationId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID from the authorization request"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "authorization_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID"
+ }
+ },
+ {
+ "name": "client",
"type": {
+ "name": "OAuthAuthorizationClient",
"type": "object",
- "name": "Session",
"properties": [
{
- "name": "access_token",
+ "name": "client_id",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ "shortText": "Unique identifier for the OAuth client (UUID)"
}
},
{
- "name": "expires_at",
+ "name": "client_name",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ "shortText": "Human-readable name of the OAuth client"
}
},
{
- "name": "expires_in",
+ "name": "client_uri",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
"comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ "shortText": "URI of the OAuth client's website"
}
},
{
- "name": "provider_refresh_token",
+ "name": "logo_uri",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ "shortText": "URI of the OAuth client's logo"
}
- },
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "OAuth client requesting authorization"
+ }
+ },
+ {
+ "name": "redirect_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Redirect URI - present if user already consented (can be used to trigger immediate redirect)"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Space-separated list of requested scopes"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "properties": [
{
- "name": "provider_token",
+ "name": "email",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ "shortText": "User email"
}
},
{
- "name": "refresh_token",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
- },
- {
- "name": "token_type",
- "type": {
- "type": "literal",
- "value": "bearer"
+ "shortText": "User ID (UUID)"
}
- },
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "User object associated with the authorization"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves details about an OAuth authorization request.\\nUsed to display consent information to the user.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis method returns authorization details including client info, scopes, and user information.\\nIf the response includes a redirect_uri, it means consent was already given - the caller\\nshould handle the redirect manually if needed."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient._refreshSession": {
+ "name": "@supabase/supabase-js.GoTrueClient._refreshSession",
+ "params": [
+ {
+ "name": "currentSession",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
{
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
},
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
},
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
},
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
},
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
{
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
},
- {
- "type": "literal",
- "value": "totp"
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "type": "literal",
- "value": "phone"
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
}
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
},
{
- "name": "friendly_name",
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
+ "isOptional": true
},
{
"name": "id",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
}
},
{
- "name": "status",
+ "name": "identity_data",
"type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
},
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
+ "isOptional": true
},
{
- "name": "updated_at",
+ "name": "identity_id",
"type": {
"type": "intrinsic",
"name": "string"
}
- }
- ]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
+ },
{
- "name": "created_at",
+ "name": "last_sign_in_at",
"type": {
"type": "intrinsic",
"name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
},
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
+ "isOptional": true
},
{
- "name": "friendly_name",
+ "name": "provider",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
}
},
{
- "name": "id",
+ "name": "updated_at",
"type": {
"type": "intrinsic",
"name": "string"
},
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
+ "isOptional": true
},
{
- "name": "updated_at",
+ "name": "user_id",
"type": {
"type": "intrinsic",
"name": "string"
@@ -11434,966 +11620,1747 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
- ]
- }
- },
- "isOptional": true
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
},
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- },
- {
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
"type": "intrinsic",
"name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
},
- "valueType": {
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
}
},
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "last_sign_in_at",
- "type": {
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
+ "valueType": {
"type": "intrinsic",
- "name": "string"
+ "name": "any"
}
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- }
- },
- "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
},
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
},
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
},
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
}
- ]
- },
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
- }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
}
]
}
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
},
{
"name": "user",
"type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient._setSession": {
+ "name": "@supabase/supabase-js.GoTrueClient._setSession",
+ "params": [
+ {
+ "name": "currentSession",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
{
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
}
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "status",
- "type": {
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
"type": "union",
- "name": "Status",
"subTypes": [
{
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
},
{
- "type": "literal",
- "value": "phone"
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
}
]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
}
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
{
- "type": "literal",
- "value": "webauthn"
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
{
- "type": "literal",
- "value": "totp"
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
{
- "type": "literal",
- "value": "webauthn"
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "type": "literal",
- "value": "totp"
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
{
- "type": "literal",
- "value": "phone"
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
}
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
+ {
+ "name": "invited_at",
+ "type": {
"type": "intrinsic",
"name": "string"
},
- "valueType": {
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
"type": "intrinsic",
- "name": "any"
- }
+ "name": "boolean"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
}
- }
- ]
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
}
- },
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ ]
},
{
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
+ "type": "literal",
+ "value": null
}
]
}
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "literal",
- "value": null
- }
},
{
"name": "user",
"type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Log in an existing user by exchanging an Auth Code issued during the PKCE flow."
- }
- },
- "@supabase/auth-js.GoTrueClient.getClaims": {
- "name": "@supabase/auth-js.GoTrueClient.getClaims",
- "params": [
- {
- "name": "jwt",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "An optional specific JWT you wish to verify, not the one you\\n can obtain from #getSession."
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "allowExpired",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If set to \`true\` the \`exp\` claim will not be validated against the current time."
- }
- },
- {
- "name": "jwks",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "keys",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "JWK",
- "properties": [
- {
- "name": "alg",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "key_ops",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- },
- {
- "name": "kid",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "kty",
- "type": {
- "type": "union",
- "subTypes": [
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
{
- "type": "literal",
- "value": "RSA"
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
{
- "type": "literal",
- "value": "EC"
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
},
{
- "type": "literal",
- "value": "oct"
- }
- ]
- }
- }
- ]
- }
- }
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "If set, this JSON Web Key Set is going to have precedence over the cached value available on the server."
- }
- },
- {
- "name": "keys",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "JWK",
- "properties": [
- {
- "name": "alg",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "key_ops",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- },
- {
- "name": "kid",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "kty",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "RSA"
- },
- {
- "type": "literal",
- "value": "EC"
- },
- {
- "type": "literal",
- "value": "oct"
- }
- ]
- }
- }
- ]
- }
- },
- "isOptional": true,
- "comment": {
- "shortText": ""
- }
- }
- ]
- },
- "comment": {
- "shortText": "Various additional options that allow you to customize the\\n behavior of this method."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "claims",
- "type": {
- "type": "nameOnly",
- "name": "JwtPayload"
- }
- },
- {
- "name": "header",
- "type": {
- "name": "JwtHeader",
- "type": "object",
- "properties": [
- {
- "name": "alg",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "RS256"
- },
- {
- "type": "literal",
- "value": "ES256"
- },
- {
- "type": "literal",
- "value": "HS256"
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- }
- },
- {
- "name": "kid",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
},
{
- "name": "typ",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": null
}
]
}
- },
- {
- "name": "signature",
- "type": {
- "type": "nameOnly",
- "name": "Uint8Array"
- }
}
]
}
@@ -12413,8 +13380,23 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "data",
"type": {
- "type": "literal",
- "value": null
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
}
},
{
@@ -12425,827 +13407,368 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
}
]
}
}
- },
- "comment": {
- "shortText": "Extracts the JWT claims present in the access token by first verifying the\\nJWT against the server's JSON Web Key Set endpoint\\n\`/.well-known/jwks.json\` which is often cached, resulting in significantly\\nfaster responses. Prefer this method over #getUser which always\\nsends a request to the Auth server for each JWT.\\n\\nIf the project is not using an asymmetric JWT signing key (like ECC or\\nRSA) it always sends a request to the Auth server (similar to #getUser) to verify the JWT."
}
},
- "@supabase/auth-js.GoTrueClient.getSession": {
- "name": "@supabase/auth-js.GoTrueClient.getSession",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
+ "@supabase/supabase-js.GoTrueClient._signOut": {
+ "name": "@supabase/supabase-js.GoTrueClient._signOut",
+ "params": [
+ {
+ "type": {
+ "name": "SignOut",
+ "type": "object",
+ "properties": [
{
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
+ "name": "scope",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Determines which sessions should be\\nlogged out. Global means all\\nsessions by this account. Local\\nmeans only this session. Others\\nmeans all other sessions except the\\ncurrent one. When using others,\\nthere is no sign-out event fired on\\nthe current session!"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient._updateUser": {
+ "name": "@supabase/supabase-js.GoTrueClient._updateUser",
+ "params": [
+ {
+ "name": "attributes",
+ "type": {
+ "type": "object",
+ "name": "UserAttributes",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\nThe \`data\` should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's email."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The nonce sent for reauthentication if the user's password is to be updated.\\n\\nCall reauthenticate() to obtain the nonce first."
+ }
+ },
+ {
+ "name": "password",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's password."
+ }
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's phone."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "emailRedirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
"type": "object",
- "name": "Session",
+ "name": "AuthUser",
"properties": [
{
- "name": "access_token",
+ "name": "action_link",
"type": {
"type": "intrinsic",
"name": "string"
},
- "comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
}
},
{
- "name": "expires_at",
+ "name": "aud",
"type": {
"type": "intrinsic",
- "name": "number"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ "name": "string"
}
},
{
- "name": "expires_in",
+ "name": "confirmation_sent_at",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
- "comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
- }
+ "isOptional": true
},
{
- "name": "provider_refresh_token",
+ "name": "confirmed_at",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "provider_token",
+ "name": "deleted_at",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
- }
+ "isOptional": true
},
{
- "name": "refresh_token",
+ "name": "email",
"type": {
"type": "intrinsic",
"name": "string"
},
- "comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
+ "isOptional": true
},
{
- "name": "token_type",
+ "name": "email_change_sent_at",
"type": {
- "type": "literal",
- "value": "bearer"
- }
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
{
- "name": "user",
+ "name": "email_confirmed_at",
"type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
"type": "object",
- "name": "UserAppMetadata",
"properties": [
{
- "name": "provider",
+ "name": "created_at",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "name": "Factor",
- "type": "object",
- "properties": [
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
{
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": "webauthn"
},
{
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
+ "type": "literal",
+ "value": "totp"
},
{
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
{
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
+ "type": "literal",
+ "value": "webauthn"
},
{
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
+ "type": "literal",
+ "value": "totp"
},
{
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": "phone"
}
]
},
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
}
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
- }
- ]
- },
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Returns the session, refreshing it if necessary.\\n\\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\\n\\n**IMPORTANT:** This method loads values directly from the storage attached\\nto the client. If that storage is based on request cookies for example,\\nthe values in it may not be authentic and therefore it's strongly advised\\nagainst using this method and its results in such circumstances. A warning\\nwill be emitted if this is detected. Use #getUser() instead."
- }
- },
- "@supabase/auth-js.GoTrueClient.getUser": {
- "name": "@supabase/auth-js.GoTrueClient.getUser",
- "params": [
- {
- "name": "jwt",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "name": "UserResponse",
- "subTypes": [
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "name": "T",
- "type": "object",
- "properties": [
- {
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ }
+ ]
},
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
{
"name": "Factor",
"type": "object",
@@ -13334,123 +13857,34 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
{
"name": "id",
@@ -13657,352 +14091,16 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
]
}
}
- },
- "comment": {
- "shortText": "Gets the current user details if there is an existing session. This method\\nperforms a network request to the Supabase Auth server, so the returned\\nvalue is authentic and can be used to base authorization rules on."
- }
- },
- "@supabase/auth-js.GoTrueClient.getUserIdentities": {
- "name": "@supabase/auth-js.GoTrueClient.getUserIdentities",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Gets all the identities linked to a user."
- }
- },
- "@supabase/auth-js.GoTrueClient.initialize": {
- "name": "@supabase/auth-js.GoTrueClient.initialize",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "name": "InitializeResult",
- "type": "object",
- "properties": [
- {
- "name": "error",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "AuthError"
- },
- {
- "type": "literal",
- "value": null
- }
- ]
- }
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Initializes the client session either from the url or from storage.\\nThis method is automatically called when instantiating the client, but should also be called\\nmanually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc)."
}
},
- "@supabase/auth-js.GoTrueClient.linkIdentity": {
- "name": "@supabase/auth-js.GoTrueClient.linkIdentity",
+ "@supabase/supabase-js.GoTrueClient.exchangeCodeForSession": {
+ "name": "@supabase/supabase-js.GoTrueClient.exchangeCodeForSession",
"params": [
{
- "name": "credentials",
+ "name": "authCode",
"type": {
- "name": "SignInWithOAuthCredentials",
- "type": "object",
- "properties": [
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "queryParams",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true,
- "comment": {
- "shortText": "An object of query params"
- }
- },
- {
- "name": "redirectTo",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A URL to send the user to after they are confirmed."
- }
- },
- {
- "name": "scopes",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A space-separated list of scopes granted to the OAuth application."
- }
- },
- {
- "name": "skipBrowserRedirect",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
- }
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "union",
- "name": "Provider",
- "subTypes": [
- {
- "type": "literal",
- "value": "apple"
- },
- {
- "type": "literal",
- "value": "azure"
- },
- {
- "type": "literal",
- "value": "bitbucket"
- },
- {
- "type": "literal",
- "value": "discord"
- },
- {
- "type": "literal",
- "value": "facebook"
- },
- {
- "type": "literal",
- "value": "figma"
- },
- {
- "type": "literal",
- "value": "github"
- },
- {
- "type": "literal",
- "value": "gitlab"
- },
- {
- "type": "literal",
- "value": "google"
- },
- {
- "type": "literal",
- "value": "kakao"
- },
- {
- "type": "literal",
- "value": "keycloak"
- },
- {
- "type": "literal",
- "value": "linkedin"
- },
- {
- "type": "literal",
- "value": "linkedin_oidc"
- },
- {
- "type": "literal",
- "value": "notion"
- },
- {
- "type": "literal",
- "value": "slack"
- },
- {
- "type": "literal",
- "value": "slack_oidc"
- },
- {
- "type": "literal",
- "value": "spotify"
- },
- {
- "type": "literal",
- "value": "twitch"
- },
- {
- "type": "literal",
- "value": "twitter"
- },
- {
- "type": "literal",
- "value": "workos"
- },
- {
- "type": "literal",
- "value": "zoom"
- },
- {
- "type": "literal",
- "value": "fly"
- }
- ]
- },
- "comment": {
- "shortText": "One of the providers supported by GoTrue."
- }
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
}
}
],
@@ -14012,7 +14110,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "OAuthResponse",
+ "name": "AuthTokenResponse",
"subTypes": [
{
"type": "object",
@@ -14020,823 +14118,374 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "data",
"type": {
+ "name": "T",
"type": "object",
"properties": [
{
- "name": "provider",
+ "name": "session",
"type": {
- "type": "union",
- "name": "Provider",
- "subTypes": [
- {
- "type": "literal",
- "value": "apple"
- },
- {
- "type": "literal",
- "value": "azure"
- },
- {
- "type": "literal",
- "value": "bitbucket"
- },
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
{
- "type": "literal",
- "value": "discord"
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
},
{
- "type": "literal",
- "value": "facebook"
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
},
{
- "type": "literal",
- "value": "figma"
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
},
{
- "type": "literal",
- "value": "github"
- },
- {
- "type": "literal",
- "value": "gitlab"
- },
- {
- "type": "literal",
- "value": "google"
- },
- {
- "type": "literal",
- "value": "kakao"
- },
- {
- "type": "literal",
- "value": "keycloak"
- },
- {
- "type": "literal",
- "value": "linkedin"
- },
- {
- "type": "literal",
- "value": "linkedin_oidc"
- },
- {
- "type": "literal",
- "value": "notion"
- },
- {
- "type": "literal",
- "value": "slack"
- },
- {
- "type": "literal",
- "value": "slack_oidc"
- },
- {
- "type": "literal",
- "value": "spotify"
- },
- {
- "type": "literal",
- "value": "twitch"
- },
- {
- "type": "literal",
- "value": "twitter"
- },
- {
- "type": "literal",
- "value": "workos"
- },
- {
- "type": "literal",
- "value": "zoom"
- },
- {
- "type": "literal",
- "value": "fly"
- }
- ]
- }
- },
- {
- "name": "url",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "union",
- "name": "Provider",
- "subTypes": [
- {
- "type": "literal",
- "value": "apple"
- },
- {
- "type": "literal",
- "value": "azure"
- },
- {
- "type": "literal",
- "value": "bitbucket"
- },
- {
- "type": "literal",
- "value": "discord"
- },
- {
- "type": "literal",
- "value": "facebook"
- },
- {
- "type": "literal",
- "value": "figma"
- },
- {
- "type": "literal",
- "value": "github"
- },
- {
- "type": "literal",
- "value": "gitlab"
- },
- {
- "type": "literal",
- "value": "google"
- },
- {
- "type": "literal",
- "value": "kakao"
- },
- {
- "type": "literal",
- "value": "keycloak"
- },
- {
- "type": "literal",
- "value": "linkedin"
- },
- {
- "type": "literal",
- "value": "linkedin_oidc"
- },
- {
- "type": "literal",
- "value": "notion"
- },
- {
- "type": "literal",
- "value": "slack"
- },
- {
- "type": "literal",
- "value": "slack_oidc"
- },
- {
- "type": "literal",
- "value": "spotify"
- },
- {
- "type": "literal",
- "value": "twitch"
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
},
{
- "type": "literal",
- "value": "twitter"
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
},
{
- "type": "literal",
- "value": "workos"
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
},
{
- "type": "literal",
- "value": "zoom"
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
},
{
- "type": "literal",
- "value": "fly"
- }
- ]
- }
- },
- {
- "name": "url",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Links an oauth identity to an existing user.\\nThis method supports the PKCE flow."
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "credentials",
- "type": {
- "name": "SignInWithIdTokenCredentials",
- "type": "object",
- "properties": [
- {
- "name": "access_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If the ID token contains an \`at_hash\` claim, then the hash of this value is compared to the value in the ID token."
- }
- },
- {
- "name": "nonce",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If the ID token contains a \`nonce\` claim, then the hash of this value is compared to the value in the ID token."
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "captchaToken",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Verification token received when the user completes the captcha on the site."
- }
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "google"
- },
- {
- "type": "literal",
- "value": "apple"
- },
- {
- "type": "literal",
- "value": "azure"
- },
- {
- "type": "literal",
- "value": "facebook"
- },
- {
- "type": "literal",
- "value": "kakao"
- },
- null
- ]
- },
- "comment": {
- "shortText": "Provider name or OIDC \`iss\` value identifying which provider should be used to verify the provided token. Supported names: \`google\`, \`apple\`, \`azure\`, \`facebook\`, \`kakao\`, \`keycloak\` (deprecated)."
- }
- },
- {
- "name": "token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "OIDC ID token issued by the specified provider. The \`iss\` claim in the ID token must match the supplied provider. Some ID tokens contain an \`at_hash\` which require that you provide an \`access_token\` value to be accepted properly. If the token contains a \`nonce\` claim you must supply the nonce used to obtain the ID token."
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "name": "AuthTokenResponse",
- "subTypes": [
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "name": "T",
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "object",
- "name": "Session",
- "properties": [
- {
- "name": "access_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
- }
- },
- {
- "name": "expires_at",
- "type": {
- "type": "intrinsic",
- "name": "number"
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
},
- "isOptional": true,
- "comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
- }
- },
- {
- "name": "expires_in",
- "type": {
- "type": "intrinsic",
- "name": "number"
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
- }
- },
- {
- "name": "provider_refresh_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
- }
- },
- {
- "name": "provider_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
- }
- },
- {
- "name": "refresh_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
- },
- {
- "name": "token_type",
- "type": {
- "type": "literal",
- "value": "bearer"
- }
- },
- {
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
{
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
},
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
+ {
+ "type": "literal",
+ "value": "totp"
},
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "type": "literal",
+ "value": "phone"
}
- }
- ]
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
{
- "name": "created_at",
+ "name": "friendly_name",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
},
{
"name": "id",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
}
},
{
- "name": "identity_data",
+ "name": "status",
"type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
},
- "isOptional": true
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
},
{
- "name": "identity_id",
+ "name": "updated_at",
"type": {
"type": "intrinsic",
"name": "string"
}
- },
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
{
- "name": "last_sign_in_at",
+ "name": "created_at",
"type": {
"type": "intrinsic",
"name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
},
- "isOptional": true
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
},
{
- "name": "provider",
+ "name": "friendly_name",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
}
},
{
- "name": "updated_at",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "comment": {
+ "shortText": "ID of the factor."
+ }
},
{
- "name": "user_id",
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
"type": {
"type": "intrinsic",
"name": "string"
@@ -14844,791 +14493,208 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
- },
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
- }
- ]
- },
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
- }
- }
- ]
- }
- },
- {
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ ]
}
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
+ "valueType": {
"type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ "name": "any"
}
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
},
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
+ {
+ "name": "last_sign_in_at",
+ "type": {
"type": "intrinsic",
"name": "string"
},
- "valueType": {
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
}
},
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ]
+ }
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true
- },
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
}
- }
- ]
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "user",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Links an OIDC identity to an existing user."
- }
- }
- ]
- },
- "@supabase/auth-js.GoTrueClient.onAuthStateChange": {
- "name": "@supabase/auth-js.GoTrueClient.onAuthStateChange",
- "params": [
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "event",
- "type": {
- "type": "union",
- "name": "AuthChangeEvent",
- "subTypes": [
- {
- "type": "literal",
- "value": "INITIAL_SESSION"
- },
- {
- "type": "literal",
- "value": "PASSWORD_RECOVERY"
- },
- {
- "type": "literal",
- "value": "SIGNED_IN"
- },
- {
- "type": "literal",
- "value": "SIGNED_OUT"
- },
- {
- "type": "literal",
- "value": "TOKEN_REFRESHED"
- },
- {
- "type": "literal",
- "value": "USER_UPDATED"
- },
- {
- "type": "literal",
- "value": "MFA_CHALLENGE_VERIFIED",
- "name": "AuthChangeEventMFA"
- }
- ]
- }
- },
- {
- "name": "session",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "object",
- "name": "Session",
- "properties": [
- {
- "name": "access_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
- }
- },
- {
- "name": "expires_at",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
- }
- },
- {
- "name": "expires_in",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
- }
- },
- {
- "name": "provider_refresh_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
- }
- },
- {
- "name": "provider_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
- }
- },
- {
- "name": "refresh_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
- },
- {
- "name": "token_type",
- "type": {
- "type": "literal",
- "value": "bearer"
}
},
{
"name": "user",
"type": {
"type": "object",
- "name": "User",
+ "name": "AuthUser",
"properties": [
{
"name": "action_link",
@@ -16091,1414 +15157,40314 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
}
]
- },
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
}
}
]
}
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "comment": {
- "shortText": "A callback function to be invoked when an auth event happens."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
"type": "object",
"properties": [
{
- "name": "subscription",
+ "name": "data",
"type": {
"type": "object",
- "name": "Subscription",
"properties": [
{
- "name": "callback",
+ "name": "session",
"type": {
- "type": "function",
- "params": [
- {
- "name": "event",
- "type": {
- "type": "union",
- "name": "AuthChangeEvent",
- "subTypes": [
- {
- "type": "literal",
- "value": "INITIAL_SESSION"
- },
- {
- "type": "literal",
- "value": "PASSWORD_RECOVERY"
- },
- {
- "type": "literal",
- "value": "SIGNED_IN"
- },
- {
- "type": "literal",
- "value": "SIGNED_OUT"
- },
- {
- "type": "literal",
- "value": "TOKEN_REFRESHED"
- },
- {
- "type": "literal",
- "value": "USER_UPDATED"
- },
- {
- "type": "literal",
- "value": "MFA_CHALLENGE_VERIFIED",
- "name": "AuthChangeEventMFA"
- }
- ]
- }
- },
- {
- "name": "session",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "object",
- "name": "Session",
- "properties": [
- {
- "name": "access_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
- }
- },
- {
- "name": "expires_at",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true,
- "comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
- }
- },
- {
- "name": "expires_in",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
- }
- },
- {
- "name": "provider_refresh_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
- }
- },
- {
- "name": "provider_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
- }
- },
- {
- "name": "refresh_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
- },
- {
- "name": "token_type",
- "type": {
- "type": "literal",
- "value": "bearer"
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in an existing user by exchanging an Auth Code issued during the PKCE flow."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.getClaims": {
+ "name": "@supabase/supabase-js.GoTrueClient.getClaims",
+ "params": [
+ {
+ "name": "jwt",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An optional specific JWT you wish to verify, not the one you\\n can obtain from #getSession."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "allowExpired",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to \`true\` the \`exp\` claim will not be validated against the current time."
+ }
+ },
+ {
+ "name": "jwks",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "keys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "JWK",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key_ops",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "kty",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set, this JSON Web Key Set is going to have precedence over the cached value available on the server."
+ }
+ },
+ {
+ "name": "keys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "JWK",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key_ops",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "kty",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": ""
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Various additional options that allow you to customize the\\n behavior of this method."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "claims",
+ "type": {
+ "type": "nameOnly",
+ "name": "JwtPayload"
+ }
+ },
+ {
+ "name": "header",
+ "type": {
+ "name": "JwtHeader",
+ "type": "object",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RS256"
+ },
+ {
+ "type": "literal",
+ "value": "ES256"
+ },
+ {
+ "type": "literal",
+ "value": "HS256"
+ }
+ ]
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "typ",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "signature",
+ "type": {
+ "type": "nameOnly",
+ "name": "Uint8Array"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Extracts the JWT claims present in the access token by first verifying the\\nJWT against the server's JSON Web Key Set endpoint\\n\`/.well-known/jwks.json\` which is often cached, resulting in significantly\\nfaster responses. Prefer this method over #getUser which always\\nsends a request to the Auth server for each JWT.\\n\\nIf the project is not using an asymmetric JWT signing key (like ECC or\\nRSA) it always sends a request to the Auth server (similar to #getUser) to verify the JWT."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.getSession": {
+ "name": "@supabase/supabase-js.GoTrueClient.getSession",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
}
- },
- {
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
+ {
+ "name": "factor_type",
+ "type": {
"type": "union",
+ "name": "Type",
"subTypes": [
{
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "literal",
+ "value": "webauthn"
},
{
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
}
]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
}
},
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "UserIdentity",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
{
- "name": "identity_data",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "isOptional": true
+ "type": "literal",
+ "value": "webauthn"
},
{
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": "totp"
},
{
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
{
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": "webauthn"
},
{
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "type": "literal",
+ "value": "totp"
},
{
- "name": "user_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "literal",
+ "value": "phone"
}
]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
}
},
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
},
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
},
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
},
- "isOptional": true
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "phone_confirmed_at",
- "type": {
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
+ "valueType": {
"type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "name": "any"
+ }
},
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
- }
+ }
+ ]
}
- ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
}
]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "comment": {
- "shortText": "The function to call every time there is an event. eg: (eventName) => {}"
+ ]
}
- },
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
{
- "name": "id",
+ "name": "session",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The subscriber UUID. This will be set by the client."
+ "type": "literal",
+ "value": null
}
- },
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
{
- "name": "unsubscribe",
+ "name": "session",
"type": {
- "type": "function",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "comment": {
- "shortText": "Call this to remove the listener."
+ "type": "literal",
+ "value": null
}
}
]
}
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
}
]
}
- }
- ]
+ ]
+ }
}
},
"comment": {
- "shortText": "Receive a notification every time an auth event happens.\\nSafe to use without an async function as callback."
- },
- "altSignatures": [
+ "shortText": "Returns the session, refreshing it if necessary.\\n\\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\\n\\n**IMPORTANT:** This method loads values directly from the storage attached\\nto the client. If that storage is based on request cookies for example,\\nthe values in it may not be authentic and therefore it's strongly advised\\nagainst using this method and its results in such circumstances. A warning\\nwill be emitted if this is detected. Use #getUser() instead."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.getUser": {
+ "name": "@supabase/supabase-js.GoTrueClient.getUser",
+ "params": [
{
- "params": [
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "event",
- "type": {
- "type": "union",
- "name": "AuthChangeEvent",
- "subTypes": [
- {
- "type": "literal",
- "value": "INITIAL_SESSION"
- },
- {
- "type": "literal",
- "value": "PASSWORD_RECOVERY"
- },
- {
- "type": "literal",
- "value": "SIGNED_IN"
- },
- {
- "type": "literal",
- "value": "SIGNED_OUT"
- },
- {
- "type": "literal",
- "value": "TOKEN_REFRESHED"
- },
- {
- "type": "literal",
- "value": "USER_UPDATED"
- },
- {
- "type": "literal",
- "value": "MFA_CHALLENGE_VERIFIED",
- "name": "AuthChangeEventMFA"
- }
- ]
- }
- },
+ "name": "jwt",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
{
- "name": "session",
+ "name": "data",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
+ "name": "T",
+ "type": "object",
+ "properties": [
{
- "type": "object",
- "name": "Session",
- "properties": [
- {
- "name": "access_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
- }
- },
- {
- "name": "expires_at",
- "type": {
- "type": "intrinsic",
- "name": "number"
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true,
- "comment": {
- "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
- }
- },
- {
- "name": "expires_in",
- "type": {
- "type": "intrinsic",
- "name": "number"
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
},
- "comment": {
- "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
- }
- },
- {
- "name": "provider_refresh_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
- }
- },
- {
- "name": "provider_token",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "isOptional": true,
- "comment": {
- "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
- }
- },
- {
- "name": "refresh_token",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
},
- "comment": {
- "shortText": "A one-time used refresh token that never expires."
- }
- },
- {
- "name": "token_type",
- "type": {
- "type": "literal",
- "value": "bearer"
- }
- },
- {
- "name": "user",
- "type": {
- "type": "object",
- "name": "User",
- "properties": [
- {
- "name": "action_link",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "app_metadata",
- "type": {
- "type": "object",
- "name": "UserAppMetadata",
- "properties": [
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- }
- },
- {
- "name": "aud",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "confirmation_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "deleted_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_change_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "email_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "factors",
- "type": {
- "type": "array",
- "elemType": {
- "type": "union",
- "subTypes": [
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "identities",
- "type": {
- "type": "array",
- "elemType": {
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
"type": "object",
- "name": "UserIdentity",
"properties": [
{
"name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "identity_data",
+ "name": "factor_type",
"type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
},
- "isOptional": true
- },
- {
- "name": "identity_id",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
}
},
{
- "name": "last_sign_in_at",
+ "name": "friendly_name",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
- },
- {
- "name": "provider",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
}
},
{
- "name": "updated_at",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "comment": {
+ "shortText": "ID of the factor."
+ }
},
{
- "name": "user_id",
+ "name": "status",
"type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
]
}
- },
- "isOptional": true
- },
- {
- "name": "invited_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "is_anonymous",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "is_sso_user",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "last_sign_in_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_email",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "new_phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "phone_confirmed_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "recovery_sent_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "role",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "user_metadata",
- "type": {
- "type": "object",
- "name": "UserMetadata",
- "properties": []
- }
+ ]
}
- ]
+ },
+ "isOptional": true
},
- "comment": {
- "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
}
- }
- ]
+ ]
+ }
}
]
}
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "intrinsic",
- "name": "void"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
}
}
- }
+ ]
},
- "comment": {
- "shortText": "A callback function to be invoked when an auth event happens."
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
}
- }
- ],
- "ret": {
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "subscription",
- "type": {
- "type": "object",
- "name": "Subscription",
- "properties": [
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "event",
- "type": {
- "type": "union",
- "name": "AuthChangeEvent",
- "subTypes": [
- {
- "type": "literal",
- "value": "INITIAL_SESSION"
- },
- {
- "type": "literal",
- "value": "PASSWORD_RECOVERY"
- },
- {
- "type": "literal",
- "value": "SIGNED_IN"
- },
- {
- "type": "literal",
- "value": "SIGNED_OUT"
- },
- {
- "type": "literal",
- "value": "TOKEN_REFRESHED"
- },
- {
- "type": "literal",
- "value": "USER_UPDATED"
- },
- {
- "type": "literal",
- "value": "MFA_CHALLENGE_VERIFIED",
- "name": "AuthChangeEventMFA"
- }
- ]
- }
- },
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Gets the current user details if there is an existing session. This method\\nperforms a network request to the Supabase Auth server, so the returned\\nvalue is authentic and can be used to base authorization rules on."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.getUserIdentities": {
+ "name": "@supabase/supabase-js.GoTrueClient.getUserIdentities",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Gets all the identities linked to a user."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.initialize": {
+ "name": "@supabase/supabase-js.GoTrueClient.initialize",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "name": "InitializeResult",
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Initializes the client session either from the url or from storage.\\nThis method is automatically called when instantiating the client, but should also be called\\nmanually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc)."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.linkIdentity": {
+ "name": "@supabase/supabase-js.GoTrueClient.linkIdentity",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithOAuthCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "queryParams",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An object of query params"
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they are confirmed."
+ }
+ },
+ {
+ "name": "scopes",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A space-separated list of scopes granted to the OAuth application."
+ }
+ },
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "One of the providers supported by GoTrue."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Links an oauth identity to an existing user.\\nThis method supports the PKCE flow."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithIdTokenCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains an \`at_hash\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains a \`nonce\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ null
+ ]
+ },
+ "comment": {
+ "shortText": "Provider name or OIDC \`iss\` value identifying which provider should be used to verify the provided token. Supported names: \`google\`, \`apple\`, \`azure\`, \`facebook\`, \`kakao\`, \`keycloak\` (deprecated)."
+ }
+ },
+ {
+ "name": "token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "OIDC ID token issued by the specified provider. The \`iss\` claim in the ID token must match the supplied provider. Some ID tokens contain an \`at_hash\` which require that you provide an \`access_token\` value to be accepted properly. If the token contains a \`nonce\` claim you must supply the nonce used to obtain the ID token."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthTokenResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Links an OIDC identity to an existing user."
+ }
+ }
+ ]
+ },
+ "@supabase/supabase-js.GoTrueClient.onAuthStateChange": {
+ "name": "@supabase/supabase-js.GoTrueClient.onAuthStateChange",
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "A callback function to be invoked when an auth event happens."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "subscription",
+ "type": {
+ "type": "object",
+ "name": "Subscription",
+ "properties": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "The function to call every time there is an event. eg: (eventName) => {}"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The subscriber UUID. This will be set by the client."
+ }
+ },
+ {
+ "name": "unsubscribe",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Call this to remove the listener."
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Receive a notification every time an auth event happens.\\nSafe to use without an async function as callback."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "A callback function to be invoked when an auth event happens."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "subscription",
+ "type": {
+ "type": "object",
+ "name": "Subscription",
+ "properties": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "The function to call every time there is an event. eg: (eventName) => {}"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The subscriber UUID. This will be set by the client."
+ }
+ },
+ {
+ "name": "unsubscribe",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Call this to remove the listener."
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Avoid using an async function inside \`onAuthStateChange\` as you might end\\nup with a deadlock. The callback function runs inside an exclusive lock,\\nso calling other Supabase Client APIs that also try to acquire the\\nexclusive lock, might cause a deadlock. This behavior is observable across\\ntabs. In the next major library version, this behavior will not be supported.\\n\\nReceive a notification every time an auth event happens."
+ }
+ }
+ ]
+ },
+ "@supabase/supabase-js.GoTrueClient.reauthenticate": {
+ "name": "@supabase/supabase-js.GoTrueClient.reauthenticate",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a reauthentication OTP to the user's email or phone number.\\nRequires the user to be signed-in."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.refreshSession": {
+ "name": "@supabase/supabase-js.GoTrueClient.refreshSession",
+ "params": [
+ {
+ "name": "currentSession",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The current session. If passed in, it must contain a refresh token."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns a new session, regardless of expiry status.\\nTakes in an optional current session. If not passed in, then refreshSession() will attempt to retrieve it from getSession().\\nIf the current session's refresh token is invalid, an error will be thrown."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.resend": {
+ "name": "@supabase/supabase-js.GoTrueClient.resend",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "type": "union",
+ "name": "ResendParams",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "emailRedirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they have signed-in."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOtpResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "messageId",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "messageId",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Resends an existing signup confirmation email, email change email, SMS OTP or phone change OTP."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.resetPasswordForEmail": {
+ "name": "@supabase/supabase-js.GoTrueClient.resetPasswordForEmail",
+ "params": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The email address of the user."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The URL to send the user to after they click the password reset link."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a password reset request to an email address. This method supports the PKCE flow."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.setSession": {
+ "name": "@supabase/supabase-js.GoTrueClient.setSession",
+ "params": [
+ {
+ "name": "currentSession",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The current session that minimally contains an access token and refresh token."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sets the session data from the current session. If the current session is expired, setSession will take care of refreshing it to obtain a new session.\\nIf the refresh token or access token in the current session is invalid, an error will be thrown."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInAnonymously": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInAnonymously",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInAnonymouslyCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\nThe \`data\` should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new anonymous user."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithIdToken": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithIdToken",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithIdTokenCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains an \`at_hash\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains a \`nonce\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ null
+ ]
+ },
+ "comment": {
+ "shortText": "Provider name or OIDC \`iss\` value identifying which provider should be used to verify the provided token. Supported names: \`google\`, \`apple\`, \`azure\`, \`facebook\`, \`kakao\`, \`keycloak\` (deprecated)."
+ }
+ },
+ {
+ "name": "token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "OIDC ID token issued by the specified provider. The \`iss\` claim in the ID token must match the supplied provider. Some ID tokens contain an \`at_hash\` which require that you provide an \`access_token\` value to be accepted properly. If the token contains a \`nonce\` claim you must supply the nonce used to obtain the ID token."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthTokenResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Allows signing in with an OIDC ID token. The authentication provider used\\nshould be enabled and configured."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithOAuth": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithOAuth",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithOAuthCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "queryParams",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An object of query params"
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they are confirmed."
+ }
+ },
+ {
+ "name": "scopes",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A space-separated list of scopes granted to the OAuth application."
+ }
+ },
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "One of the providers supported by GoTrue."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in an existing user via a third-party provider.\\nThis method supports the PKCE flow."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithOtp": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithOtp",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "type": "union",
+ "name": "SignInWithPasswordlessCredentials",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's email address."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\nThe \`data\` should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ },
+ {
+ "name": "emailRedirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The redirect url embedded in the email link"
+ }
+ },
+ {
+ "name": "shouldCreateUser",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "channel",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Messaging channel to use (e.g. whatsapp or sms)"
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\nThe \`data\` should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ },
+ {
+ "name": "shouldCreateUser",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's phone number."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOtpResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "messageId",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "messageId",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in a user using magiclink or a one-time password (OTP).\\n\\nIf the \`{{ .ConfirmationURL }}\` variable is specified in the email template, a magiclink will be sent.\\nIf the \`{{ .Token }}\` variable is specified in the email template, an OTP will be sent.\\nIf you're using phone sign-ins, only an OTP will be sent. You won't be able to send a magiclink for phone sign-ins.\\n\\nBe aware that you may get back an error message that will not distinguish\\nbetween the cases where the account does not exist or, that the account\\ncan only be accessed via social login.\\n\\nDo note that you will need to configure a Whatsapp sender on Twilio\\nif you are using phone sign in with the 'whatsapp' channel. The whatsapp\\nchannel is not supported on other providers\\nat this time.\\nThis method supports PKCE when an email is passed."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithPassword": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithPassword",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "type": "nameOnly",
+ "name": "SignInWithPasswordCredentials"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthTokenResponsePassword",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "weakPassword",
+ "type": {
+ "name": "WeakPassword",
+ "type": "object",
+ "properties": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "reasons",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "WeakPasswordReasons"
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "weakPassword",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in an existing user with an email and password or phone and password.\\n\\nBe aware that you may get back an error message that will not distinguish\\nbetween the cases where the account does not exist or that the\\nemail/phone and password combination is wrong or that the account can only\\nbe accessed via social login."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithSSO": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithSSO",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "SignInWithSSO",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they have signed-in."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "providerId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "UUID of the SSO provider to invoke single-sign on to."
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "domain",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Domain name of the organization for which to invoke single-sign on."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they have signed-in."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "SSOResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL to open in a browser which will complete the sign-in flow by\\ntaking the user to the identity provider's authentication flow.\\n\\nOn browsers you can set the URL to \`window.location.href\` to take\\nthe user to the authentication flow."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Attempts a single-sign on using an enterprise Identity Provider. A\\nsuccessful SSO attempt will redirect the current page to the identity\\nprovider authorization page. The redirect URL is implementation and SSO\\nprotocol specific.\\n\\nYou can use it by providing a SSO domain. Typically you can extract this\\ndomain by asking users for their email address. If this domain is\\nregistered on the Auth instance the redirect will use that organization's\\ncurrently active SSO Identity Provider for the login.\\n\\nIf you have built an organization-specific login page, you can use the\\norganization's SSO Identity Provider UUID directly instead."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signInWithWeb3": {
+ "name": "@supabase/supabase-js.GoTrueClient.signInWithWeb3",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "type": "union",
+ "name": "Web3Credentials",
+ "subTypes": [
+ {
+ "type": "union",
+ "name": "SolanaWeb3Credentials",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "chain",
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "signInWithSolana",
+ "type": {
+ "type": "nameOnly",
+ "name": "Partial"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "statement",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ },
+ {
+ "name": "wallet",
+ "type": {
+ "name": "SolanaWallet",
+ "type": "object",
+ "properties": [
+ {
+ "name": "publicKey",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "toBase58",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signIn",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "inputs",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "SolanaSignInInput"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "SolanaSignInOutput"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "SolanaSignInOutput"
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signMessage",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "nameOnly",
+ "name": "Uint8Array"
+ }
+ },
+ {
+ "name": "encoding",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "utf8"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Uint8Array"
+ }
+ },
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ]
+ }
+ }
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Wallet interface to use. If not specified will default to \`window.solana\`."
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "chain",
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Sign in with Solana compatible message. Must include \`Issued At\`, \`URI\` and \`Version\`."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signature",
+ "type": {
+ "type": "nameOnly",
+ "name": "Uint8Array"
+ },
+ "comment": {
+ "shortText": "Ed25519 signature of the message."
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "union",
+ "name": "EthereumWeb3Credentials",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "chain",
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "signInWithEthereum",
+ "type": {
+ "type": "nameOnly",
+ "name": "Partial"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "statement",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ },
+ {
+ "name": "wallet",
+ "type": {
+ "type": "nameOnly",
+ "name": "EthereumWallet"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Wallet interface to use. If not specified will default to \`window.ethereum\`."
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "chain",
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Sign in with Ethereum compatible message. Must include \`Issued At\`, \`URI\` and \`Version\`."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signature",
+ "type": {
+ "type": "nameOnly",
+ "name": "Hex"
+ },
+ "comment": {
+ "shortText": "Ethereum curve (secp256k1) signature of the message."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Signs in a user by verifying a message signed by the user's private key.\\nSupports Ethereum (via Sign-In-With-Ethereum) & Solana (Sign-In-With-Solana) standards,\\nboth of which derive from the EIP-4361 standard\\nWith slight variation on Solana's side."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signOut": {
+ "name": "@supabase/supabase-js.GoTrueClient.signOut",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "name": "SignOut",
+ "type": "object",
+ "properties": [
+ {
+ "name": "scope",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Determines which sessions should be\\nlogged out. Global means all\\nsessions by this account. Local\\nmeans only this session. Others\\nmeans all other sessions except the\\ncurrent one. When using others,\\nthere is no sign-out event fired on\\nthe current session!"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Inside a browser context, \`signOut()\` will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a \`\\"SIGNED_OUT\\"\` event.\\n\\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to \`auth.api.signOut(JWT: string)\`.\\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\\n\\nIf using \`others\` scope, no \`SIGNED_OUT\` event is fired!"
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.signUp": {
+ "name": "@supabase/supabase-js.GoTrueClient.signUp",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "type": "nameOnly",
+ "name": "SignUpWithPasswordCredentials"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new user.\\n\\nBe aware that if a user account exists in the system you may get back an\\nerror message that attempts to hide this information from the user.\\nThis method has support for PKCE via email signups. The PKCE flow cannot be used when autoconfirm is enabled."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.startAutoRefresh": {
+ "name": "@supabase/supabase-js.GoTrueClient.startAutoRefresh",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Starts an auto-refresh process in the background. The session is checked\\nevery few seconds. Close to the time of expiration a process is started to\\nrefresh the session. If refreshing fails it will be retried for as long as\\nnecessary.\\n\\nIf you set the GoTrueClientOptions#autoRefreshToken you don't need\\nto call this function, it will be called for you.\\n\\nOn browsers the refresh process works only when the tab/window is in the\\nforeground to conserve resources as well as prevent race conditions and\\nflooding auth with requests. If you call this method any managed\\nvisibility change callback will be removed and you must manage visibility\\nchanges on your own.\\n\\nOn non-browser platforms the refresh process works *continuously* in the\\nbackground, which may not be desirable. You should hook into your\\nplatform's foreground indication mechanism and call these methods\\nappropriately to conserve resources.\\n\\n#stopAutoRefresh"
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.stopAutoRefresh": {
+ "name": "@supabase/supabase-js.GoTrueClient.stopAutoRefresh",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Stops an active auto refresh process running in the background (if any).\\n\\nIf you call this method any managed visibility change callback will be\\nremoved and you must manage visibility changes on your own.\\n\\nSee #startAutoRefresh for more details."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.unlinkIdentity": {
+ "name": "@supabase/supabase-js.GoTrueClient.unlinkIdentity",
+ "params": [
+ {
+ "name": "identity",
+ "type": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unlinks an identity from a user by deleting it. The user will no longer be able to sign in with that identity once it's unlinked."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.updateUser": {
+ "name": "@supabase/supabase-js.GoTrueClient.updateUser",
+ "params": [
+ {
+ "name": "attributes",
+ "type": {
+ "type": "object",
+ "name": "UserAttributes",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\nThe \`data\` should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's email."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The nonce sent for reauthentication if the user's password is to be updated.\\n\\nCall reauthenticate() to obtain the nonce first."
+ }
+ },
+ {
+ "name": "password",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's password."
+ }
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's phone."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "emailRedirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Updates user data for a logged in user."
+ }
+ },
+ "@supabase/supabase-js.GoTrueClient.verifyOtp": {
+ "name": "@supabase/supabase-js.GoTrueClient.verifyOtp",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "VerifyOtpParams",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "VerifyMobileOtpParams",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they are confirmed."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's phone number."
+ }
+ },
+ {
+ "name": "token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The otp sent to the user's phone number."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "MobileOtpType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The user's verification type."
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "VerifyEmailOtpParams",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's email address."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they are confirmed."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The otp sent to the user's email address."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "EmailOtpType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ },
+ {
+ "type": "literal",
+ "value": "email"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The user's verification type."
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "VerifyTokenHashParams",
+ "properties": [
+ {
+ "name": "token_hash",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The token hash used in an email link"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "EmailOtpType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ },
+ {
+ "type": "literal",
+ "value": "email"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The user's verification type."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthSession",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "AuthUser",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in a user given a User supplied OTP or TokenHash received through mobile or email."
+ }
+ },
+ "@supabase/supabase-js.NavigatorLockAcquireTimeoutError.constructor": {
+ "name": "@supabase/supabase-js.NavigatorLockAcquireTimeoutError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "NavigatorLockAcquireTimeoutError"
+ }
+ }
+ },
+ "@supabase/supabase-js.PostgrestError.constructor": {
+ "name": "@supabase/supabase-js.PostgrestError.constructor",
+ "params": [
+ {
+ "name": "context",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "details",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "hint",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestError"
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.constructor": {
+ "name": "@supabase/supabase-js.RealtimeChannel.constructor",
+ "params": [
+ {
+ "name": "topic",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Topic name can be any string."
+ }
+ },
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "name": "RealtimeChannelOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "broadcast",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ack",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "replay",
+ "type": {
+ "type": "nameOnly",
+ "name": "ReplayOption"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "self",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
+ }
+ },
+ {
+ "name": "presence",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "enabled",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "key option is used to track presence payload across clients"
+ }
+ },
+ {
+ "name": "private",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "name": "socket",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeClient"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.httpSend": {
+ "name": "@supabase/supabase-js.RealtimeChannel.httpSend",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The name of the broadcast event"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "comment": {
+ "shortText": "Payload to be sent (required)"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Options including timeout"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "success",
+ "type": {
+ "type": "literal",
+ "value": true
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "success",
+ "type": {
+ "type": "literal",
+ "value": false
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.on": {
+ "name": "@supabase/supabase-js.RealtimeChannel.on",
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "name": "RealtimePresenceJoinPayload",
+ "type": "object",
+ "properties": [
+ {
+ "name": "currentPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ },
+ {
+ "name": "event"
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "newPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "name": "RealtimePresenceLeavePayload",
+ "type": "object",
+ "properties": [
+ {
+ "name": "currentPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ },
+ {
+ "name": "event"
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "leftPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "union",
+ "name": "RealtimePostgresChangesPayload",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresInsertPayload"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresUpdatePayload"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresDeletePayload"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresInsertPayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresUpdatePayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresDeletePayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ },
+ "comment": {
+ "shortText": "One of \\"broadcast\\", \\"presence\\", or \\"postgres_changes\\"."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Custom object specific to the Realtime feature detailing which payloads to receive."
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "meta",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "replayed",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Function to be invoked when event handler is triggered."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "meta",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "replayed",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "ALL"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "ALL"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastPayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "INSERT"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "INSERT"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastInsertPayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "UPDATE"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "UPDATE"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastUpdatePayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "DELETE"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "DELETE"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastDeletePayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ },
+ {
+ "name": "filter"
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ }
+ }
+ ]
+ },
+ "@supabase/supabase-js.RealtimeChannel.presenceState": {
+ "name": "@supabase/supabase-js.RealtimeChannel.presenceState",
+ "params": [],
+ "ret": {
+ "type": {
+ "name": "RealtimePresenceState",
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.send": {
+ "name": "@supabase/supabase-js.RealtimeChannel.send",
+ "params": [
+ {
+ "name": "args",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The name of the event being sent"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Payload to be sent"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "broadcast"
+ },
+ {
+ "type": "literal",
+ "value": "presence"
+ },
+ {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The type of event to send"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Arguments to send to channel"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Options to be used during the send process"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a message into the channel."
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.subscribe": {
+ "name": "@supabase/supabase-js.RealtimeChannel.subscribe",
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "REALTIME_SUBSCRIBE_STATES"
+ }
+ },
+ {
+ "name": "err",
+ "type": {
+ "type": "nameOnly",
+ "name": "Error"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Subscribe registers your client with the server"
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.teardown": {
+ "name": "@supabase/supabase-js.RealtimeChannel.teardown",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Teardown the channel.\\n\\nDestroys and stops related timers."
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.track": {
+ "name": "@supabase/supabase-js.RealtimeChannel.track",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.unsubscribe": {
+ "name": "@supabase/supabase-js.RealtimeChannel.unsubscribe",
+ "params": [
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Leaves the channel.\\n\\nUnsubscribes from server events, and instructs channel to terminate on server.\\nTriggers onClose() hooks.\\n\\nTo receive leave acknowledgements, use the a \`receive\` hook to bind to the server ack, ie:\\nchannel.unsubscribe().receive(\\"ok\\", () => alert(\\"left!\\") )"
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.untrack": {
+ "name": "@supabase/supabase-js.RealtimeChannel.untrack",
+ "params": [
+ {
+ "name": "opts",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeChannel.updateJoinPayload": {
+ "name": "@supabase/supabase-js.RealtimeChannel.updateJoinPayload",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.constructor": {
+ "name": "@supabase/supabase-js.RealtimeClient.constructor",
+ "params": [
+ {
+ "name": "endPoint",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The string WebSocket endpoint, ie, \\"ws://example.com/socket\\", \\"wss://example.com\\", \\"/socket\\" (inherited host & protocol)"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "name": "RealtimeClientOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "accessToken",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "decode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "encode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "nameOnly",
+ "name": "Fetch"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatCallback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeartbeatStatus"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatIntervalMs",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "log_level",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logger",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logLevel",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "params",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "reconnectAfterMs",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "transport",
+ "type": {
+ "type": "object",
+ "name": "WebSocketLikeConstructor",
+ "properties": []
+ },
+ "isOptional": true
+ },
+ {
+ "name": "worker",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "workerUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeClient"
+ }
+ },
+ "comment": {
+ "shortText": "Initializes the Socket."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.channel": {
+ "name": "@supabase/supabase-js.RealtimeClient.channel",
+ "params": [
+ {
+ "name": "topic",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "params",
+ "type": {
+ "name": "RealtimeChannelOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "broadcast",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ack",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "replay",
+ "type": {
+ "type": "nameOnly",
+ "name": "ReplayOption"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "self",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
+ }
+ },
+ {
+ "name": "presence",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "enabled",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "key option is used to track presence payload across clients"
+ }
+ },
+ {
+ "name": "private",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.connect": {
+ "name": "@supabase/supabase-js.RealtimeClient.connect",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Connects the socket, unless already connected."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.connectionState": {
+ "name": "@supabase/supabase-js.RealtimeClient.connectionState",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "CONNECTION_STATE"
+ }
+ },
+ "comment": {
+ "shortText": "Returns the current state of the socket."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.disconnect": {
+ "name": "@supabase/supabase-js.RealtimeClient.disconnect",
+ "params": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A numeric status code to send on disconnect."
+ }
+ },
+ {
+ "name": "reason",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom reason for the disconnect."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Disconnects the socket."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.endpointURL": {
+ "name": "@supabase/supabase-js.RealtimeClient.endpointURL",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Returns the URL of the websocket."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.flushSendBuffer": {
+ "name": "@supabase/supabase-js.RealtimeClient.flushSendBuffer",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Flushes send buffer"
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.getChannels": {
+ "name": "@supabase/supabase-js.RealtimeClient.getChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns all created channels"
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.isConnected": {
+ "name": "@supabase/supabase-js.RealtimeClient.isConnected",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` is the connection is open."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.isConnecting": {
+ "name": "@supabase/supabase-js.RealtimeClient.isConnecting",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` if the connection is currently connecting."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.isDisconnecting": {
+ "name": "@supabase/supabase-js.RealtimeClient.isDisconnecting",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` if the connection is currently disconnecting."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.log": {
+ "name": "@supabase/supabase-js.RealtimeClient.log",
+ "params": [
+ {
+ "name": "kind",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "msg",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Logs the message.\\n\\nFor customized logging, \`this.logger\` can be overridden."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.onHeartbeat": {
+ "name": "@supabase/supabase-js.RealtimeClient.onHeartbeat",
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeartbeatStatus"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.push": {
+ "name": "@supabase/supabase-js.RealtimeClient.push",
+ "params": [
+ {
+ "name": "data",
+ "type": {
+ "name": "RealtimeMessage",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "join_ref",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ref",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "topic",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Push out a message if the socket is connected.\\n\\nIf the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.removeAllChannels": {
+ "name": "@supabase/supabase-js.RealtimeClient.removeAllChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "RealtimeRemoveChannelResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes all channels"
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.removeChannel": {
+ "name": "@supabase/supabase-js.RealtimeClient.removeChannel",
+ "params": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ },
+ "comment": {
+ "shortText": "A RealtimeChannel instance"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeRemoveChannelResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes a single channel"
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.sendHeartbeat": {
+ "name": "@supabase/supabase-js.RealtimeClient.sendHeartbeat",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a heartbeat message if the socket is connected."
+ }
+ },
+ "@supabase/supabase-js.RealtimeClient.setAuth": {
+ "name": "@supabase/supabase-js.RealtimeClient.setAuth",
+ "params": [
+ {
+ "name": "token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A JWT string to override the token set on the client."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sets the JWT access token used for channel subscription authorization and Realtime RLS.\\n\\nIf param is null it will use the \`accessToken\` callback function or the token set on the client.\\n\\nOn callback used, it will set the value of the token internal to the client."
+ }
+ },
+ "@supabase/supabase-js.RealtimePresence.constructor": {
+ "name": "@supabase/supabase-js.RealtimePresence.constructor",
+ "params": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ },
+ "comment": {
+ "shortText": "The RealtimeChannel"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "nameOnly",
+ "name": "PresenceOpts"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The options,\\n for example \`{events: {state: 'state', diff: 'diff'}}\`"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePresence"
+ }
+ },
+ "comment": {
+ "shortText": "Initializes the Presence."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.constructor": {
+ "name": "@supabase/supabase-js.SupabaseClient.constructor",
+ "params": [
+ {
+ "name": "supabaseUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ }
+ },
+ {
+ "name": "supabaseKey",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "name": "SupabaseClientOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "accessToken",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional function for using a third-party authentication system with\\nSupabase. The function should return an access token or ID token (JWT) by\\nobtaining it from the third-party auth SDK. Note that this\\nfunction may be called concurrently and many times. Use memoization and\\nlocking techniques if this is not supported by the SDKs.\\n\\nWhen set, the \`auth\` namespace of the Supabase client cannot be used.\\nCreate another client if you wish to use Supabase Auth and third-party\\nauthentications concurrently in the same application."
+ }
+ },
+ {
+ "name": "auth",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "autoRefreshToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Automatically refreshes the token for logged-in users. Defaults to true."
+ }
+ },
+ {
+ "name": "debug",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseAuthClientOptions['debug']"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
+ }
+ },
+ {
+ "name": "detectSessionInUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
+ }
+ },
+ {
+ "name": "flowType",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseAuthClientOptions['flowType']"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
+ }
+ },
+ {
+ "name": "lock",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseAuthClientOptions['lock']"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Provide your own locking mechanism based on the environment. By default no locking is done at this time.",
+ "tags": [
+ {
+ "tag": "experimental",
+ "text": ""
+ }
+ ]
+ }
+ },
+ {
+ "name": "persistSession",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to persist a logged-in session to storage. Defaults to true."
+ }
+ },
+ {
+ "name": "storage",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseAuthClientOptions['storage']"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A storage provider. Used to store the logged-in session."
+ }
+ },
+ {
+ "name": "storageKey",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional key name used for storing tokens in local storage."
+ }
+ },
+ {
+ "name": "userStorage",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseAuthClientOptions['userStorage']"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A storage provider to store the user profile separately from the session.\\nUseful when you need to store the session information in cookies,\\nwithout bloating the data with the redundant user object.",
+ "tags": [
+ {
+ "tag": "experimental",
+ "text": ""
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "db",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "schema",
+ "type": {
+ "type": "nameOnly",
+ "name": "SchemaName"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to \`public\`."
+ }
+ },
+ {
+ "name": "global",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "fetch",
+ "type": {
+ "type": "nameOnly",
+ "name": "Fetch"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom \`fetch\` implementation."
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional headers for initializing the client."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "realtime",
+ "type": {
+ "name": "RealtimeClientOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "accessToken",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "decode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "encode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "nameOnly",
+ "name": "Fetch"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatCallback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeartbeatStatus"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatIntervalMs",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "log_level",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logger",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logLevel",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "params",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "reconnectAfterMs",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "transport",
+ "type": {
+ "type": "object",
+ "name": "WebSocketLikeConstructor",
+ "properties": []
+ },
+ "isOptional": true
+ },
+ {
+ "name": "worker",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "workerUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Options passed to the realtime-js instance"
+ }
+ },
+ {
+ "name": "storage",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageClientOptions"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "SupabaseClient"
+ }
+ },
+ "comment": {
+ "shortText": "Create a new client for use in the browser."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.channel": {
+ "name": "@supabase/supabase-js.SupabaseClient.channel",
+ "params": [
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The name of the Realtime channel."
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "name": "RealtimeChannelOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "broadcast",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ack",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "replay",
+ "type": {
+ "type": "nameOnly",
+ "name": "ReplayOption"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "self",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
+ }
+ },
+ {
+ "name": "presence",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "enabled",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "key option is used to track presence payload across clients"
+ }
+ },
+ {
+ "name": "private",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The options to pass to the Realtime channel."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.from": {
+ "name": "@supabase/supabase-js.SupabaseClient.from",
+ "params": [
+ {
+ "name": "relation",
+ "type": {
+ "type": "nameOnly",
+ "name": "TableName"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.default"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "relation",
+ "type": {
+ "type": "nameOnly",
+ "name": "ViewName"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.default"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/supabase-js.SupabaseClient.getChannels": {
+ "name": "@supabase/supabase-js.SupabaseClient.getChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns all Realtime channels."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.removeAllChannels": {
+ "name": "@supabase/supabase-js.SupabaseClient.removeAllChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes all Realtime channels from Realtime client."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.removeChannel": {
+ "name": "@supabase/supabase-js.SupabaseClient.removeChannel",
+ "params": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ },
+ "comment": {
+ "shortText": "The name of the Realtime channel."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes Realtime channel from Realtime client."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.rpc": {
+ "name": "@supabase/supabase-js.SupabaseClient.rpc",
+ "params": [
+ {
+ "name": "fn",
+ "type": {
+ "type": "nameOnly",
+ "name": "FnName"
+ },
+ "comment": {
+ "shortText": "The function name to call"
+ }
+ },
+ {
+ "name": "args",
+ "type": {
+ "type": "nameOnly",
+ "name": "Args"
+ },
+ "comment": {
+ "shortText": "The arguments to pass to the function call"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Count algorithm to use to count rows returned by the\\nfunction. Only applicable for [set-returning\\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
+ }
+ },
+ {
+ "name": "get",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "When set to \`true\`, the function will be called with\\nread-only access mode."
+ }
+ },
+ {
+ "name": "head",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "When set to \`true\`, \`data\` will not be returned.\\nUseful if you only need the count."
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.default"
+ }
+ },
+ "comment": {
+ "shortText": "Perform a function call."
+ }
+ },
+ "@supabase/supabase-js.SupabaseClient.schema": {
+ "name": "@supabase/supabase-js.SupabaseClient.schema",
+ "params": [
+ {
+ "name": "schema",
+ "type": {
+ "type": "nameOnly",
+ "name": "DynamicSchema"
+ },
+ "comment": {
+ "shortText": "The schema to query"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.default"
+ }
+ },
+ "comment": {
+ "shortText": "Select a schema to query or perform an function (rpc) call.\\n\\nThe schema needs to be on the list of exposed schemas inside Supabase."
+ }
+ },
+ "@supabase/supabase-js.WebSocketFactory.constructor": {
+ "name": "@supabase/supabase-js.WebSocketFactory.constructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "WebSocketFactory"
+ }
+ }
+ },
+ "@supabase/supabase-js.WebSocketFactory.createWebSocket": {
+ "name": "@supabase/supabase-js.WebSocketFactory.createWebSocket",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "protocols",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "name": "WebSocketLike",
+ "properties": [
+ {
+ "name": "binaryType",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "bufferedAmount",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "CLOSED",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "CLOSING",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "CONNECTING",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "dispatchEvent",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "extensions",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "onclose",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "CloseEvent"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onerror",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onmessage",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "MessageEvent"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onopen",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "OPEN",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "protocol",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "readyState",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ "@supabase/supabase-js.WebSocketFactory.getWebSocketConstructor": {
+ "name": "@supabase/supabase-js.WebSocketFactory.getWebSocketConstructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "protocols",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "WebSocket"
+ }
+ }
+ }
+ }
+ },
+ "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported": {
+ "name": "@supabase/supabase-js.WebSocketFactory.isWebSocketSupported",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ }
+ }
+ },
+ {
+ "name": "@supabase/auth-js",
+ "methods": {
+ "@supabase/auth-js.AuthApiError.constructor": {
+ "name": "@supabase/auth-js.AuthApiError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthApiError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthError.constructor": {
+ "name": "@supabase/auth-js.AuthError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthImplicitGrantRedirectError.constructor": {
+ "name": "@supabase/auth-js.AuthImplicitGrantRedirectError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "details",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthImplicitGrantRedirectError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthImplicitGrantRedirectError.toJSON": {
+ "name": "@supabase/auth-js.AuthImplicitGrantRedirectError.toJSON",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "details",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ]
+ }
+ }
+ },
+ "@supabase/auth-js.AuthInvalidCredentialsError.constructor": {
+ "name": "@supabase/auth-js.AuthInvalidCredentialsError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthInvalidCredentialsError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthInvalidJwtError.constructor": {
+ "name": "@supabase/auth-js.AuthInvalidJwtError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthInvalidJwtError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthInvalidTokenResponseError.constructor": {
+ "name": "@supabase/auth-js.AuthInvalidTokenResponseError.constructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthInvalidTokenResponseError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.constructor": {
+ "name": "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "details",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthPKCEGrantCodeExchangeError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.toJSON": {
+ "name": "@supabase/auth-js.AuthPKCEGrantCodeExchangeError.toJSON",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "details",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ]
+ }
+ }
+ },
+ "@supabase/auth-js.AuthRetryableFetchError.constructor": {
+ "name": "@supabase/auth-js.AuthRetryableFetchError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthRetryableFetchError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthSessionMissingError.constructor": {
+ "name": "@supabase/auth-js.AuthSessionMissingError.constructor",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthSessionMissingError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthUnknownError.constructor": {
+ "name": "@supabase/auth-js.AuthUnknownError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "originalError",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthUnknownError"
+ }
+ }
+ },
+ "@supabase/auth-js.AuthWeakPasswordError.constructor": {
+ "name": "@supabase/auth-js.AuthWeakPasswordError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "reasons",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "length"
+ },
+ {
+ "type": "literal",
+ "value": "characters"
+ },
+ {
+ "type": "literal",
+ "value": "pwned"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthWeakPasswordError"
+ }
+ }
+ },
+ "@supabase/auth-js.CustomAuthError.constructor": {
+ "name": "@supabase/auth-js.CustomAuthError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "CustomAuthError"
+ }
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.constructor": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.constructor",
+ "params": [
+ {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "GoTrueAdminApi"
+ }
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.mfa.deleteFactor",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "AuthMFAAdminDeleteFactorParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the MFA factor to delete."
+ }
+ },
+ {
+ "name": "userId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the user whose factor is being deleted."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAAdminDeleteFactorResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor that was successfully deleted."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes a factor on a user. This will log the user out of all active\\nsessions if the deleted factor was verified."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.mfa.listFactors": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.mfa.listFactors",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "AuthMFAAdminListFactorsParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "userId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the user."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAAdminListFactorsResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "nameOnly",
+ "name": "Type"
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "Status"
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "All factors attached to the user."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Lists all factors associated to a user."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.createClient": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.createClient",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "CreateOAuthClientParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed grant types (optional, defaults to authorization_code and refresh_token)"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ },
+ {
+ "name": "response_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "literal",
+ "value": "code",
+ "name": "OAuthClientResponseType"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed response types (optional, defaults to code)"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Scope of the OAuth client"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client"
+ }
+ },
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_secret",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Client secret (only returned on registration and regeneration)"
+ }
+ },
+ {
+ "name": "client_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was created"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ },
+ {
+ "name": "registration_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientRegistrationType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Registration type of the client"
+ }
+ },
+ {
+ "name": "response_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "literal",
+ "value": "code",
+ "name": "OAuthClientResponseType"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed response types"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Scope of the OAuth client"
+ }
+ },
+ {
+ "name": "token_endpoint_auth_method",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Token endpoint authentication method"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was last updated"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.deleteClient": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.deleteClient",
+ "params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.getClient": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.getClient",
+ "params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client"
+ }
+ },
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_secret",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Client secret (only returned on registration and regeneration)"
+ }
+ },
+ {
+ "name": "client_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was created"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ },
+ {
+ "name": "registration_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientRegistrationType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Registration type of the client"
+ }
+ },
+ {
+ "name": "response_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "literal",
+ "value": "code",
+ "name": "OAuthClientResponseType"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed response types"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Scope of the OAuth client"
+ }
+ },
+ {
+ "name": "token_endpoint_auth_method",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Token endpoint authentication method"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was last updated"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Gets details of a specific OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.listClients": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.listClients",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "PageParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "page",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The page number"
+ }
+ },
+ {
+ "name": "perPage",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Number of items returned per page"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientListResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "clients"
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Lists all OAuth clients with optional pagination.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.regenerateClientSecret": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.regenerateClientSecret",
+ "params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client"
+ }
+ },
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_secret",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Client secret (only returned on registration and regeneration)"
+ }
+ },
+ {
+ "name": "client_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was created"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ },
+ {
+ "name": "registration_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientRegistrationType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Registration type of the client"
+ }
+ },
+ {
+ "name": "response_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "literal",
+ "value": "code",
+ "name": "OAuthClientResponseType"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed response types"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Scope of the OAuth client"
+ }
+ },
+ {
+ "name": "token_endpoint_auth_method",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Token endpoint authentication method"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was last updated"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Regenerates the secret for an OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.oauth.updateClient": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.oauth.updateClient",
+ "params": [
+ {
+ "name": "clientId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "params",
+ "type": {
+ "name": "UpdateOAuthClientParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthClientResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client"
+ }
+ },
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_secret",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Client secret (only returned on registration and regeneration)"
+ }
+ },
+ {
+ "name": "client_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client"
+ }
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was created"
+ }
+ },
+ {
+ "name": "grant_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "OAuthClientGrantType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed grant types"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ },
+ {
+ "name": "redirect_uris",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed redirect URIs"
+ }
+ },
+ {
+ "name": "registration_type",
+ "type": {
+ "type": "union",
+ "name": "OAuthClientRegistrationType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Registration type of the client"
+ }
+ },
+ {
+ "name": "response_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "literal",
+ "value": "code",
+ "name": "OAuthClientResponseType"
+ }
+ },
+ "comment": {
+ "shortText": "Array of allowed response types"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Scope of the OAuth client"
+ }
+ },
+ {
+ "name": "token_endpoint_auth_method",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Token endpoint authentication method"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Timestamp when the client was last updated"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Updates an existing OAuth client.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.createUser": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.createUser",
+ "params": [
+ {
+ "name": "attributes",
+ "type": {
+ "type": "object",
+ "name": "AdminUserAttributes",
+ "properties": [
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's application specific metadata. This maps to the \`auth.users.app_metadata\` column.\\n\\nOnly a service role can modify.\\n\\nThe \`app_metadata\` should be a JSON object that includes app-specific info, such as identity providers, roles, and other\\naccess control information."
+ }
+ },
+ {
+ "name": "ban_duration",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Determines how long a user is banned for.\\n\\nThe format for the ban duration follows a strict sequence of decimal numbers with a unit suffix.\\nValid time units are \\"ns\\", \\"us\\" (or \\"µs\\"), \\"ms\\", \\"s\\", \\"m\\", \\"h\\".\\n\\nFor example, some possible durations include: '300ms', '2h45m'.\\n\\nSetting the ban duration to 'none' lifts the ban on the user."
+ }
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's email."
+ }
+ },
+ {
+ "name": "email_confirm",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Confirms the user's email address if set to true.\\n\\nOnly a service role can modify."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`id\` for the user.\\n\\nAllows you to overwrite the default \`id\` set for the user."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The nonce sent for reauthentication if the user's password is to be updated.\\n\\nCall reauthenticate() to obtain the nonce first."
+ }
+ },
+ {
+ "name": "password",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's password."
+ }
+ },
+ {
+ "name": "password_hash",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`password_hash\` for the user's password.\\n\\nAllows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.\\n\\nSupports bcrypt, scrypt (firebase), and argon2 password hashes."
+ }
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's phone."
+ }
+ },
+ {
+ "name": "phone_confirm",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Confirms the user's phone number if set to true.\\n\\nOnly a service role can modify."
+ }
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`role\` claim set in the user's access token JWT.\\n\\nWhen a user signs up, this role is set to \`authenticated\` by default. You should only modify the \`role\` if you need to provision several levels of admin access that have different permissions on individual columns in your database.\\n\\nSetting this role to \`service_role\` is not recommended as it grants the user admin privileges."
+ }
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\n\\nThe \`user_metadata\` should be a JSON object that includes user-specific info, such as their first and last name.\\n\\nNote: When using the GoTrueAdminApi and wanting to modify a user's metadata,\\nthis attribute is used instead of UserAttributes data."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new user.\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.deleteUser": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.deleteUser",
+ "params": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user id you want to remove."
+ }
+ },
+ {
+ "name": "shouldSoftDelete",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "comment": {
+ "shortText": "If true, then the user will be soft-deleted from the auth schema. Soft deletion allows user identification from the hashed user ID but is not reversible.\\nDefaults to false for backward compatibility.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Delete a user. Requires a \`service_role\` key."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.generateLink": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.generateLink",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "GenerateLinkParams",
+ "subTypes": [
+ {
+ "name": "GenerateSignupLinkParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "isOptional": true
+ },
+ {
+ "name": "password",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "signup"
+ }
+ }
+ ]
+ },
+ {
+ "name": "GenerateInviteOrMagiclinkParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's email"
+ }
+ },
+ {
+ "name": "options",
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "name": "GenerateRecoveryLinkParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's email"
+ }
+ },
+ {
+ "name": "options",
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "recovery"
+ }
+ }
+ ]
+ },
+ {
+ "name": "GenerateEmailChangeLinkParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's email"
+ }
+ },
+ {
+ "name": "newEmail",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's new email. Only required if type is 'email_change_current' or 'email_change_new'."
+ }
+ },
+ {
+ "name": "options",
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "GenerateLinkResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "properties",
+ "type": {
+ "name": "GenerateLinkProperties",
+ "type": "object",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The email link to send to the user.\\nThe action_link follows the following format: auth/v1/verify?type={verification_type}&token={hashed_token}&redirect_to={redirect_to}"
+ }
+ },
+ {
+ "name": "email_otp",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The raw email OTP.\\nYou should send this in the email if you want your users to verify using an OTP instead of the action link."
+ }
+ },
+ {
+ "name": "hashed_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The hashed token appended to the action link."
+ }
+ },
+ {
+ "name": "redirect_to",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The URL appended to the action link."
+ }
+ },
+ {
+ "name": "verification_type",
+ "type": {
+ "type": "union",
+ "name": "GenerateLinkType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification type that the email link is associated to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "properties",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Generates email links and OTPs to be sent via a custom email provider."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.getUserById": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.getUserById",
+ "params": [
+ {
+ "name": "uid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The user's unique identifier\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Get user by id."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.inviteUserByEmail": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.inviteUserByEmail",
+ "params": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The email address of the user."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store additional metadata about the user. This maps to the \`auth.users.user_metadata\` column."
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The URL which will be appended to the email link sent to the user's email address. Once clicked the user will end up on this URL."
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Additional options to be included when inviting."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends an invite link to an email address."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.listUsers": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.listUsers",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "PageParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "page",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The page number"
+ }
+ },
+ {
+ "name": "perPage",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Number of items returned per page"
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An object which supports \`page\` and \`perPage\` as numbers, to alter the paginated results."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "users"
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Get a list of users.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.signOut": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.signOut",
+ "params": [
+ {
+ "name": "jwt",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A valid, logged-in JWT."
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The logout sope."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Removes a logged-in session."
+ }
+ },
+ "@supabase/auth-js.GoTrueAdminApi.updateUserById": {
+ "name": "@supabase/auth-js.GoTrueAdminApi.updateUserById",
+ "params": [
+ {
+ "name": "uid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "attributes",
+ "type": {
+ "type": "object",
+ "name": "AdminUserAttributes",
+ "properties": [
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's application specific metadata. This maps to the \`auth.users.app_metadata\` column.\\n\\nOnly a service role can modify.\\n\\nThe \`app_metadata\` should be a JSON object that includes app-specific info, such as identity providers, roles, and other\\naccess control information."
+ }
+ },
+ {
+ "name": "ban_duration",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Determines how long a user is banned for.\\n\\nThe format for the ban duration follows a strict sequence of decimal numbers with a unit suffix.\\nValid time units are \\"ns\\", \\"us\\" (or \\"µs\\"), \\"ms\\", \\"s\\", \\"m\\", \\"h\\".\\n\\nFor example, some possible durations include: '300ms', '2h45m'.\\n\\nSetting the ban duration to 'none' lifts the ban on the user."
+ }
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's email."
+ }
+ },
+ {
+ "name": "email_confirm",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Confirms the user's email address if set to true.\\n\\nOnly a service role can modify."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`id\` for the user.\\n\\nAllows you to overwrite the default \`id\` set for the user."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The nonce sent for reauthentication if the user's password is to be updated.\\n\\nCall reauthenticate() to obtain the nonce first."
+ }
+ },
+ {
+ "name": "password",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's password."
+ }
+ },
+ {
+ "name": "password_hash",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`password_hash\` for the user's password.\\n\\nAllows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.\\n\\nSupports bcrypt, scrypt (firebase), and argon2 password hashes."
+ }
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The user's phone."
+ }
+ },
+ {
+ "name": "phone_confirm",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Confirms the user's phone number if set to true.\\n\\nOnly a service role can modify."
+ }
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The \`role\` claim set in the user's access token JWT.\\n\\nWhen a user signs up, this role is set to \`authenticated\` by default. You should only modify the \`role\` if you need to provision several levels of admin access that have different permissions on individual columns in your database.\\n\\nSetting this role to \`service_role\` is not recommended as it grants the user admin privileges."
+ }
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A custom data object to store the user's metadata. This maps to the \`auth.users.raw_user_meta_data\` column.\\n\\n\\nThe \`user_metadata\` should be a JSON object that includes user-specific info, such as their first and last name.\\n\\nNote: When using the GoTrueAdminApi and wanting to modify a user's metadata,\\nthis attribute is used instead of UserAttributes data."
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The data you want to update.\\n\\nThis function should only be called on a server. Never expose your \`service_role\` key in the browser."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Updates the user data."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.constructor": {
+ "name": "@supabase/auth-js.GoTrueClient.constructor",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "name": "GoTrueClientOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "autoRefreshToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "debug",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "args",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "detectSessionInUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "nameOnly",
+ "name": "Fetch"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "flowType",
+ "type": {
+ "type": "union",
+ "name": "AuthFlowType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "implicit"
+ },
+ {
+ "type": "literal",
+ "value": "pkce"
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "hasCustomAuthorizationHeader",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set to \\"true\\" if there is a custom authorization header set globally.",
+ "tags": [
+ {
+ "tag": "experimental",
+ "text": ""
+ }
+ ]
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "lock",
+ "type": {
+ "name": "LockFunc",
+ "type": "function",
+ "params": [
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the lock to be acquired."
+ }
+ },
+ {
+ "name": "acquireTimeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "If negative, no timeout should occur. If positive it\\n should throw an Error with an \`isAcquireTimeout\`\\n property set to true if the operation fails to be\\n acquired after this much time (ms)."
+ }
+ },
+ {
+ "name": "fn",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "R"
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "The operation to execute when the lock is acquired."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "R"
+ }
+ }
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Provide your own locking mechanism based on the environment. By default no locking is done at this time.",
+ "tags": [
+ {
+ "tag": "experimental",
+ "text": ""
+ }
+ ]
+ }
+ },
+ {
+ "name": "persistSession",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "storage",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupportedStorage"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "storageKey",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "userStorage",
+ "type": {
+ "type": "nameOnly",
+ "name": "SupportedStorage"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Stores the user object in a separate storage location from the rest of the session data. When non-null, \`storage\` will only store a JSON object containing the access and refresh token and some adjacent metadata, while \`userStorage\` will only contain the user object under the key \`storageKey + '-user'\`.\\n\\nWhen this option is set and cookie storage is used, \`getSession()\` and other functions that load a session from the cookie store might not return back a user. It's very important to always use \`getUser()\` to fetch a user object in those scenarios.",
+ "tags": [
+ {
+ "tag": "experimental",
+ "text": ""
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "GoTrueClient"
+ }
+ },
+ "comment": {
+ "shortText": "Create a new client for use in the browser."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.challenge": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.challenge",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the newly created challenge."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ },
+ "comment": {
+ "shortText": "Factor Type which generated the challenge"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Prepares a challenge used to verify that a user has access to a MFA\\nfactor."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Messaging channel to use (e.g. whatsapp or sms). Only relevant for phone factors"
+ }
+ },
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the newly created challenge."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ },
+ "comment": {
+ "shortText": "Factor Type which generated the challenge"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ },
+ {
+ "name": "webauthn",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "rpId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Relying party ID"
+ }
+ },
+ {
+ "name": "rpOrigins",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Relying party origins"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the newly created challenge."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ "comment": {
+ "shortText": "Factor Type which generated the challenge"
+ }
+ },
+ {
+ "name": "webauthn",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "credential_options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "publicKey",
+ "type": {
+ "type": "nameOnly",
+ "name": "PublicKeyCredentialCreationOptionsFuture"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "create"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "credential_options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "publicKey",
+ "type": {
+ "type": "nameOnly",
+ "name": "PublicKeyCredentialRequestOptionsFuture"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "request"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "MFAChallengeParams",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "MFAChallengeTOTPParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAChallengePhoneParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAChallengeWebauthnParams"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAChallengeResponse",
+ "subTypes": [
+ {
+ "type": "union",
+ "name": "AuthMFAChallengeTOTPResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "union",
+ "name": "AuthMFAChallengePhoneResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "union",
+ "name": "AuthMFAChallengeWebauthnResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.challengeAndVerify",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Verification code provided by the user."
+ }
+ },
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor being verified. Returned in enroll()."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAVerifyResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "New access token (JWT) after successful verification."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Number of seconds in which the access token will expire."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ },
+ "comment": {
+ "shortText": "Type of token, always \`bearer\`."
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Updated user profile."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Helper method which creates a challenge and immediately uses the given code to verify against it thereafter. The verification code is\\nprovided by the user by entering a code seen in their authenticator app."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.enroll": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.enroll",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorType",
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ },
+ "comment": {
+ "shortText": "The type of factor being enrolled."
+ }
+ },
+ {
+ "name": "friendlyName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Human readable name assigned to the factor."
+ }
+ },
+ {
+ "name": "issuer",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Domain which the user is enrolled with."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAEnrollTOTPResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Starts the enrollment process for a new Multi-Factor Authentication (MFA)\\nfactor. This method creates a new \`unverified\` factor.\\nTo verify a factor, present the QR code or secret to the user and ask them to add it to their\\nauthenticator app.\\nThe user has to enter the code from their authenticator app to verify it.\\n\\nUpon verifying a factor, all other sessions are logged out and the current session's authenticator level is promoted to \`aal2\`."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorType",
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ },
+ "comment": {
+ "shortText": "The type of factor being enrolled."
+ }
+ },
+ {
+ "name": "friendlyName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Human readable name assigned to the factor."
+ }
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Phone number associated with a factor. Number should conform to E.164 format"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAEnrollPhoneResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorType",
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ "comment": {
+ "shortText": "The type of factor being enrolled."
+ }
+ },
+ {
+ "name": "friendlyName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Human readable name assigned to the factor."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "MFAEnrollParams",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "MFAEnrollTOTPParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAEnrollPhoneParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAEnrollWebauthnParams"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAEnrollResponse",
+ "subTypes": [
+ {
+ "type": "union",
+ "name": "AuthMFAEnrollTOTPResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "union",
+ "name": "AuthMFAEnrollPhoneResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "union",
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.getAuthenticatorAssuranceLevel",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "currentAuthenticationMethods",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "AMREntry",
+ "properties": [
+ {
+ "name": "method",
+ "type": {
+ "type": "union",
+ "name": "AMRMethod",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "['number']"
+ },
+ null
+ ]
+ },
+ "comment": {
+ "shortText": "Authentication method name."
+ }
+ },
+ {
+ "name": "timestamp",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Timestamp when the method was successfully used. Represents number of\\nseconds since 1st January 1970 (UNIX epoch) in UTC."
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "A list of all authentication methods attached to this session. Use\\nthe information here to detect the last time a user verified a\\nfactor, for example if implementing a step-up scenario."
+ }
+ },
+ {
+ "name": "currentLevel",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "union",
+ "name": "AuthenticatorAssuranceLevels",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "aal1"
+ },
+ {
+ "type": "literal",
+ "value": "aal2"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Current AAL level of the session."
+ }
+ },
+ {
+ "name": "nextLevel",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "union",
+ "name": "AuthenticatorAssuranceLevels",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "aal1"
+ },
+ {
+ "type": "literal",
+ "value": "aal2"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Next possible AAL level for the session. If the next level is higher\\nthan the current one, the user should go through MFA."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns the Authenticator Assurance Level (AAL) for the active session.\\n\\n- \`aal1\` (or \`null\`) means that the user's identity has been verified only\\nwith a conventional login (email+password, OTP, magic link, social login,\\netc.).\\n- \`aal2\` means that the user's identity has been verified both with a conventional login and at least one MFA factor.\\n\\nAlthough this method returns a promise, it's fairly quick (microseconds)\\nand rarely uses the network. You can use this to check whether the current\\nuser needs to be shown a screen to verify their MFA factors."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.listFactors": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.listFactors",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAListFactorsResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns the list of MFA factors enabled for this user."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.unenroll": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.unenroll",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "name": "MFAUnenrollParams",
+ "type": "object",
+ "properties": [
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor being unenrolled."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAUnenrollResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor that was successfully unenrolled."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unenroll removes a MFA factor.\\nA user has to have an \`aal2\` authenticator level in order to unenroll a \`verified\` factor."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.mfa.verify": {
+ "name": "@supabase/auth-js.GoTrueClient.mfa.verify",
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "challengeId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the challenge being verified. Returned in challenge()."
+ }
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Verification code provided by the user."
+ }
+ },
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor being verified. Returned in enroll()."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAVerifyResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "New access token (JWT) after successful verification."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Number of seconds in which the access token will expire."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ },
+ "comment": {
+ "shortText": "Type of token, always \`bearer\`."
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Updated user profile."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Verifies a code against a challenge. The verification code is\\nprovided by the user by entering a code seen in their authenticator app."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "challengeId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the challenge being verified. Returned in challenge()."
+ }
+ },
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Verification code provided by the user."
+ }
+ },
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor being verified. Returned in enroll()."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAVerifyResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "New access token (JWT) after successful verification."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Number of seconds in which the access token will expire."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ },
+ "comment": {
+ "shortText": "Type of token, always \`bearer\`."
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Updated user profile."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "challengeId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the challenge being verified. Returned in challenge()."
+ }
+ },
+ {
+ "name": "factorId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor being verified. Returned in enroll()."
+ }
+ },
+ {
+ "name": "webauthn"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAVerifyResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "New access token (JWT) after successful verification."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Number of seconds in which the access token will expire."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ },
+ "comment": {
+ "shortText": "Type of token, always \`bearer\`."
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Updated user profile."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "params",
+ "type": {
+ "type": "union",
+ "name": "MFAVerifyParams",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "MFAVerifyTOTPParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAVerifyPhoneParams"
+ },
+ {
+ "type": "nameOnly",
+ "name": "MFAVerifyWebauthnParams"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthMFAVerifyResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "New access token (JWT) after successful verification."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "Number of seconds in which the access token will expire."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ },
+ "comment": {
+ "shortText": "Type of token, always \`bearer\`."
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Updated user profile."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/auth-js.GoTrueClient.oauth.approveAuthorization": {
+ "name": "@supabase/auth-js.GoTrueClient.oauth.approveAuthorization",
+ "params": [
+ {
+ "name": "authorizationId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID to approve"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional parameters including skipBrowserRedirect"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthConsentResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "redirect_url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL to redirect the user back to the OAuth client"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Approves an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.oauth.denyAuthorization": {
+ "name": "@supabase/auth-js.GoTrueClient.oauth.denyAuthorization",
+ "params": [
+ {
+ "name": "authorizationId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID to deny"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional parameters including skipBrowserRedirect"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthConsentResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "redirect_url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL to redirect the user back to the OAuth client"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Denies an OAuth authorization request.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.oauth.getAuthorizationDetails": {
+ "name": "@supabase/auth-js.GoTrueClient.oauth.getAuthorizationDetails",
+ "params": [
+ {
+ "name": "authorizationId",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID from the authorization request"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "authorization_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The authorization ID"
+ }
+ },
+ {
+ "name": "client",
+ "type": {
+ "name": "OAuthAuthorizationClient",
+ "type": "object",
+ "properties": [
+ {
+ "name": "client_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the OAuth client (UUID)"
+ }
+ },
+ {
+ "name": "client_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Human-readable name of the OAuth client"
+ }
+ },
+ {
+ "name": "client_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's website"
+ }
+ },
+ {
+ "name": "logo_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URI of the OAuth client's logo"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "OAuth client requesting authorization"
+ }
+ },
+ {
+ "name": "redirect_uri",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Redirect URI - present if user already consented (can be used to trigger immediate redirect)"
+ }
+ },
+ {
+ "name": "scope",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Space-separated list of requested scopes"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "User email"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "User ID (UUID)"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "User object associated with the authorization"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error"
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves details about an OAuth authorization request.\\nUsed to display consent information to the user.\\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\\n\\nThis method returns authorization details including client info, scopes, and user information.\\nIf the response includes a redirect_uri, it means consent was already given - the caller\\nshould handle the redirect manually if needed."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.exchangeCodeForSession": {
+ "name": "@supabase/auth-js.GoTrueClient.exchangeCodeForSession",
+ "params": [
+ {
+ "name": "authCode",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthTokenResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in an existing user by exchanging an Auth Code issued during the PKCE flow."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.getClaims": {
+ "name": "@supabase/auth-js.GoTrueClient.getClaims",
+ "params": [
+ {
+ "name": "jwt",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An optional specific JWT you wish to verify, not the one you\\n can obtain from #getSession."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "allowExpired",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to \`true\` the \`exp\` claim will not be validated against the current time."
+ }
+ },
+ {
+ "name": "jwks",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "keys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "JWK",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key_ops",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "kty",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set, this JSON Web Key Set is going to have precedence over the cached value available on the server."
+ }
+ },
+ {
+ "name": "keys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "JWK",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key_ops",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "kty",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": ""
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Various additional options that allow you to customize the\\n behavior of this method."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "claims",
+ "type": {
+ "type": "nameOnly",
+ "name": "JwtPayload"
+ }
+ },
+ {
+ "name": "header",
+ "type": {
+ "name": "JwtHeader",
+ "type": "object",
+ "properties": [
+ {
+ "name": "alg",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "RS256"
+ },
+ {
+ "type": "literal",
+ "value": "ES256"
+ },
+ {
+ "type": "literal",
+ "value": "HS256"
+ }
+ ]
+ }
+ },
+ {
+ "name": "kid",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "typ",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "signature",
+ "type": {
+ "type": "nameOnly",
+ "name": "Uint8Array"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Extracts the JWT claims present in the access token by first verifying the\\nJWT against the server's JSON Web Key Set endpoint\\n\`/.well-known/jwks.json\` which is often cached, resulting in significantly\\nfaster responses. Prefer this method over #getUser which always\\nsends a request to the Auth server for each JWT.\\n\\nIf the project is not using an asymmetric JWT signing key (like ECC or\\nRSA) it always sends a request to the Auth server (similar to #getUser) to verify the JWT."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.getSession": {
+ "name": "@supabase/auth-js.GoTrueClient.getSession",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns the session, refreshing it if necessary.\\n\\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\\n\\n**IMPORTANT:** This method loads values directly from the storage attached\\nto the client. If that storage is based on request cookies for example,\\nthe values in it may not be authentic and therefore it's strongly advised\\nagainst using this method and its results in such circumstances. A warning\\nwill be emitted if this is detected. Use #getUser() instead."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.getUser": {
+ "name": "@supabase/auth-js.GoTrueClient.getUser",
+ "params": [
+ {
+ "name": "jwt",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "UserResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Gets the current user details if there is an existing session. This method\\nperforms a network request to the Supabase Auth server, so the returned\\nvalue is authentic and can be used to base authorization rules on."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.getUserIdentities": {
+ "name": "@supabase/auth-js.GoTrueClient.getUserIdentities",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Gets all the identities linked to a user."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.initialize": {
+ "name": "@supabase/auth-js.GoTrueClient.initialize",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "name": "InitializeResult",
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "AuthError"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Initializes the client session either from the url or from storage.\\nThis method is automatically called when instantiating the client, but should also be called\\nmanually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc)."
+ }
+ },
+ "@supabase/auth-js.GoTrueClient.linkIdentity": {
+ "name": "@supabase/auth-js.GoTrueClient.linkIdentity",
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithOAuthCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "queryParams",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "An object of query params"
+ }
+ },
+ {
+ "name": "redirectTo",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A URL to send the user to after they are confirmed."
+ }
+ },
+ {
+ "name": "scopes",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A space-separated list of scopes granted to the OAuth application."
+ }
+ },
+ {
+ "name": "skipBrowserRedirect",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "One of the providers supported by GoTrue."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "OAuthResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "name": "Provider",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Links an oauth identity to an existing user.\\nThis method supports the PKCE flow."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "credentials",
+ "type": {
+ "name": "SignInWithIdTokenCredentials",
+ "type": "object",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains an \`at_hash\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "nonce",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If the ID token contains a \`nonce\` claim, then the hash of this value is compared to the value in the ID token."
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "captchaToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Verification token received when the user completes the captcha on the site."
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ null
+ ]
+ },
+ "comment": {
+ "shortText": "Provider name or OIDC \`iss\` value identifying which provider should be used to verify the provided token. Supported names: \`google\`, \`apple\`, \`azure\`, \`facebook\`, \`kakao\`, \`keycloak\` (deprecated)."
+ }
+ },
+ {
+ "name": "token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "OIDC ID token issued by the specified provider. The \`iss\` claim in the ID token must match the supplied provider. Some ID tokens contain an \`at_hash\` which require that you provide an \`access_token\` value to be accepted properly. If the token contains a \`nonce\` claim you must supply the nonce used to obtain the ID token."
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "AuthTokenResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "name": "T",
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Links an OIDC identity to an existing user."
+ }
+ }
+ ]
+ },
+ "@supabase/auth-js.GoTrueClient.onAuthStateChange": {
+ "name": "@supabase/auth-js.GoTrueClient.onAuthStateChange",
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "A callback function to be invoked when an auth event happens."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "subscription",
+ "type": {
+ "type": "object",
+ "name": "Subscription",
+ "properties": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "The function to call every time there is an event. eg: (eventName) => {}"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The subscriber UUID. This will be set by the client."
+ }
+ },
+ {
+ "name": "unsubscribe",
+ "type": {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Call this to remove the listener."
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Receive a notification every time an auth event happens.\\nSafe to use without an async function as callback."
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
+ {
+ "name": "session",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "object",
+ "name": "Session",
+ "properties": [
+ {
+ "name": "access_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ },
+ {
+ "name": "expires_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "expires_in",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ },
+ {
+ "name": "provider_refresh_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ },
+ {
+ "name": "provider_token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ },
+ {
+ "name": "refresh_token",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A one-time used refresh token that never expires."
+ }
+ },
+ {
+ "name": "token_type",
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "object",
+ "name": "User",
+ "properties": [
+ {
+ "name": "action_link",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "app_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserAppMetadata",
+ "properties": [
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ },
+ {
+ "name": "aud",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "confirmation_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "deleted_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_change_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "email_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "factors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "subTypes": [
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identities",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "UserIdentity",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "identity_data",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "identity_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "provider",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "invited_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_anonymous",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "is_sso_user",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "last_sign_in_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_email",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "new_phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "phone_confirmed_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "recovery_sent_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "role",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "user_metadata",
+ "type": {
+ "type": "object",
+ "name": "UserMetadata",
+ "properties": []
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "A callback function to be invoked when an auth event happens."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "subscription",
+ "type": {
+ "type": "object",
+ "name": "Subscription",
+ "properties": [
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "union",
+ "name": "AuthChangeEvent",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED",
+ "name": "AuthChangeEventMFA"
+ }
+ ]
+ }
+ },
{
"name": "session",
"type": {
@@ -17719,15 +55685,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -17764,15 +55730,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -17808,15 +55774,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -17853,15 +55819,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18366,15 +56332,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18411,15 +56377,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18455,15 +56421,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18500,15 +56466,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18850,15 +56816,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18895,15 +56861,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18939,15 +56905,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -18984,15 +56950,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -19516,15 +57482,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -19561,15 +57527,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -19605,15 +57571,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -19650,15 +57616,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -20000,15 +57966,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -20045,15 +58011,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -20089,15 +58055,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -20134,15 +58100,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -20994,15 +58960,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21039,15 +59005,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21083,15 +59049,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21128,15 +59094,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21478,15 +59444,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21523,15 +59489,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21567,15 +59533,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21612,15 +59578,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22166,15 +60132,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22211,15 +60177,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22255,15 +60221,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22300,15 +60266,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22650,15 +60616,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22695,15 +60661,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22739,15 +60705,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -22784,15 +60750,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23387,15 +61353,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23432,15 +61398,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23476,15 +61442,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23521,15 +61487,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23862,15 +61828,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23907,15 +61873,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23951,15 +61917,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -23996,15 +61962,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25211,15 +63177,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25256,15 +63222,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25300,15 +63266,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25345,15 +63311,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25686,15 +63652,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25731,15 +63697,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25775,15 +63741,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -25820,15 +63786,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -26918,10 +64884,95 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "union",
"name": "Type",
"subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
{
"type": "literal",
"value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
+ }
+ },
+ {
+ "name": "friendly_name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ID of the factor."
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "union",
+ "name": "Status",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
},
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "name": "Factor",
+ "type": "object",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "factor_type",
+ "type": {
+ "type": "union",
+ "name": "Type",
+ "subTypes": [
{
"type": "literal",
"value": "totp"
@@ -26929,6 +64980,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"type": "literal",
"value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
}
]
},
@@ -26963,10 +65018,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "union",
"name": "Status",
"subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
- },
{
"type": "literal",
"value": "totp"
@@ -26974,95 +65025,10 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"type": "literal",
"value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "The verification status of the factor, default is \`unverified\` after \`.enroll()\`, then \`verified\` after the user verifies it with \`.verify()\`"
- }
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- },
- {
- "name": "Factor",
- "type": "object",
- "properties": [
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "factor_type",
- "type": {
- "type": "union",
- "name": "Type",
- "subTypes": [
- {
- "type": "literal",
- "value": "webauthn"
},
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
- }
- ]
- },
- "comment": {
- "shortText": "Type of factor. \`totp\` and \`phone\` supported with this version"
- }
- },
- {
- "name": "friendly_name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Friendly name of the factor, useful to disambiguate between multiple factors."
- }
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "ID of the factor."
- }
- },
- {
- "name": "status",
- "type": {
- "type": "union",
- "name": "Status",
- "subTypes": [
{
"type": "literal",
"value": "webauthn"
- },
- {
- "type": "literal",
- "value": "totp"
- },
- {
- "type": "literal",
- "value": "phone"
}
]
},
@@ -27395,15 +65361,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -27440,15 +65406,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -27484,15 +65450,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -27529,15 +65495,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28111,15 +66077,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28156,15 +66122,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28200,15 +66166,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28245,15 +66211,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28595,15 +66561,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28640,15 +66606,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28684,15 +66650,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -28729,15 +66695,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -29388,15 +67354,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -29433,15 +67399,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -29477,15 +67443,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -29522,15 +67488,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30253,15 +68219,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30298,15 +68264,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30342,15 +68308,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30387,15 +68353,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30737,15 +68703,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30782,15 +68748,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30826,15 +68792,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -30871,15 +68837,15 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -31092,246 +69058,3001 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
}
- }
- ]
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "session",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "user",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "AuthError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Log in a user given a User supplied OTP or TokenHash received through mobile or email."
+ }
+ },
+ "@supabase/auth-js.NavigatorLockAcquireTimeoutError.constructor": {
+ "name": "@supabase/auth-js.NavigatorLockAcquireTimeoutError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "NavigatorLockAcquireTimeoutError"
+ }
+ }
+ }
+ }
+ },
+ {
+ "name": "@supabase/postgrest-js",
+ "methods": {
+ "@supabase/postgrest-js.PostgrestBuilder.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.constructor",
+ "params": [
+ {
+ "name": "builder",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "body",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeadersInit"
+ }
+ },
+ {
+ "name": "isMaybeSingle",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "method",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "GET"
+ },
+ {
+ "type": "literal",
+ "value": "HEAD"
+ },
+ {
+ "type": "literal",
+ "value": "POST"
+ },
+ {
+ "type": "literal",
+ "value": "PATCH"
+ },
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ]
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "shouldThrowOnError",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signal",
+ "type": {
+ "type": "nameOnly",
+ "name": "AbortSignal"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ }
+ },
+ "@supabase/postgrest-js.PostgrestBuilder.overrideTypes": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.overrideTypes",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Override the type of the returned \`data\` field in the response."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestBuilder.returns": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.returns",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Override the type of the returned \`data\`."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestBuilder.setHeader": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.setHeader",
+ "params": [
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Set an HTTP header for the request."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestBuilder.then": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.then",
+ "params": [
+ {
+ "name": "onfulfilled",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "value"
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult1"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is resolved."
+ }
+ },
+ {
+ "name": "onrejected",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "reason",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult2"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is rejected."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ },
+ "comment": {
+ "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestBuilder.throwOnError": {
+ "name": "@supabase/postgrest-js.PostgrestBuilder.throwOnError",
+ "params": [],
+ "comment": {
+ "shortText": "If there's an error with the query, throwOnError will reject the promise by\\nthrowing the error instead of returning it as part of a successful response.\\n\\nhttps://github.com/supabase/supabase-js/issues/92"
+ }
+ },
+ "@supabase/postgrest-js.PostgrestClient.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestClient.constructor",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "URL of the PostgREST endpoint"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Custom fetch"
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeadersInit"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Custom headers"
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.default.SchemaName"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Postgres schema to switch to"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestClient"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a PostgREST client."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestClient.from": {
+ "name": "@supabase/postgrest-js.PostgrestClient.from",
+ "params": [
+ {
+ "name": "relation",
+ "type": {
+ "type": "nameOnly",
+ "name": "TableName"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestQueryBuilder"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "relation",
+ "type": {
+ "type": "nameOnly",
+ "name": "ViewName"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestQueryBuilder"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestClient.rpc": {
+ "name": "@supabase/postgrest-js.PostgrestClient.rpc",
+ "params": [
+ {
+ "name": "fn",
+ "type": {
+ "type": "nameOnly",
+ "name": "FnName"
+ },
+ "comment": {
+ "shortText": "The function name to call"
+ }
+ },
+ {
+ "name": "args",
+ "type": {
+ "type": "nameOnly",
+ "name": "Args"
+ },
+ "comment": {
+ "shortText": "The arguments to pass to the function call"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Count algorithm to use to count rows returned by the\\nfunction. Only applicable for [set-returning\\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
+ }
+ },
+ {
+ "name": "get",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "When set to \`true\`, the function will be called with\\nread-only access mode."
+ }
+ },
+ {
+ "name": "head",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "When set to \`true\`, \`data\` will not be returned.\\nUseful if you only need the count."
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestFilterBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Perform a function call."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestClient.schema": {
+ "name": "@supabase/postgrest-js.PostgrestClient.schema",
+ "params": [
+ {
+ "name": "schema",
+ "type": {
+ "type": "nameOnly",
+ "name": "DynamicSchema"
+ },
+ "comment": {
+ "shortText": "The schema to query"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestClient"
+ }
+ },
+ "comment": {
+ "shortText": "Select a schema to query or perform an function (rpc) call.\\n\\nThe schema needs to be on the list of exposed schemas inside Supabase."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestError.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestError.constructor",
+ "params": [
+ {
+ "name": "context",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "code",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "details",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "hint",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestError"
+ }
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.constructor",
+ "params": [
+ {
+ "name": "builder",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "body",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "nameOnly",
+ "name": "HeadersInit"
+ }
+ },
+ {
+ "name": "isMaybeSingle",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "method",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "GET"
+ },
+ {
+ "type": "literal",
+ "value": "HEAD"
+ },
+ {
+ "type": "literal",
+ "value": "POST"
+ },
+ {
+ "type": "literal",
+ "value": "PATCH"
+ },
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ]
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "shouldThrowOnError",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "signal",
+ "type": {
+ "type": "nameOnly",
+ "name": "AbortSignal"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestFilterBuilder"
+ }
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.abortSignal": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.abortSignal",
+ "params": [
+ {
+ "name": "signal",
+ "type": {
+ "type": "nameOnly",
+ "name": "AbortSignal"
+ },
+ "comment": {
+ "shortText": "The AbortSignal to use for the fetch request"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Set the AbortSignal for the fetch request."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.containedBy": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.containedBy",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.contains": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.contains",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.csv": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.csv",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Return \`data\` as a string in CSV format."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.eq": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.eq",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "The column to filter on"
+ }
+ },
+ {
+ "name": "value",
+ "comment": {
+ "shortText": "The value to filter with"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Match only rows where \`column\` is equal to \`value\`.\\n\\nTo check if the value of \`column\` is NULL, you should use \`.is()\` instead."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.explain": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.explain",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "analyze",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If \`true\`, the query will be executed and the\\nactual run time will be returned"
+ }
+ },
+ {
+ "name": "buffers",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If \`true\`, include information on buffer usage"
+ }
+ },
+ {
+ "name": "format",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "text"
+ },
+ {
+ "type": "literal",
+ "value": "json"
}
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The format of the output, can be \`\\"text\\"\` (default)\\nor \`\\"json\\"\`"
+ }
+ },
+ {
+ "name": "settings",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If \`true\`, include information on configuration\\nparameters that affect query planning"
+ }
+ },
+ {
+ "name": "verbose",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If \`true\`, the query identifier will be returned\\nand \`data\` will include the output columns of the query"
+ }
+ },
+ {
+ "name": "wal",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "If \`true\`, include information on WAL record generation"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ ]
+ }
+ },
+ "comment": {
+ "shortText": "Return \`data\` as the EXPLAIN plan for the query.\\n\\nYou need to enable the\\n[db_plan_enabled](https://supabase.com/docs/guides/database/debugging-performance#enabling-explain)\\nsetting before using this method."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.filter": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.filter",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "operator",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "FilterOperator"
+ },
+ {
+ "type": "literal",
+ "value": "not.eq"
+ },
+ {
+ "type": "literal",
+ "value": "not.neq"
+ },
+ {
+ "type": "literal",
+ "value": "not.gt"
+ },
+ {
+ "type": "literal",
+ "value": "not.gte"
+ },
+ {
+ "type": "literal",
+ "value": "not.lt"
+ },
+ {
+ "type": "literal",
+ "value": "not.lte"
+ },
+ {
+ "type": "literal",
+ "value": "not.like"
+ },
+ {
+ "type": "literal",
+ "value": "not.ilike"
+ },
+ {
+ "type": "literal",
+ "value": "not.is"
+ },
+ {
+ "type": "literal",
+ "value": "not.in"
+ },
+ {
+ "type": "literal",
+ "value": "not.cs"
+ },
+ {
+ "type": "literal",
+ "value": "not.cd"
+ },
+ {
+ "type": "literal",
+ "value": "not.sl"
+ },
+ {
+ "type": "literal",
+ "value": "not.sr"
+ },
+ {
+ "type": "literal",
+ "value": "not.nxl"
+ },
+ {
+ "type": "literal",
+ "value": "not.nxr"
+ },
+ {
+ "type": "literal",
+ "value": "not.adj"
+ },
+ {
+ "type": "literal",
+ "value": "not.ov"
+ },
+ {
+ "type": "literal",
+ "value": "not.fts"
+ },
+ {
+ "type": "literal",
+ "value": "not.plfts"
+ },
+ {
+ "type": "literal",
+ "value": "not.phfts"
+ },
+ {
+ "type": "literal",
+ "value": "not.wfts"
+ }
+ ]
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "operator",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.geojson": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.geojson",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Return \`data\` as an object in [GeoJSON](https://geojson.org) format."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.gt": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.gt",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.gte": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.gte",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.ilike": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilike",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "pattern",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "pattern",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAllOf": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAllOf",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAnyOf": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAnyOf",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.in": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.in",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "The column to filter on"
+ }
+ },
+ {
+ "name": "values",
+ "type": {
+ "type": "array"
+ },
+ "comment": {
+ "shortText": "The values array to filter with"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Match only rows where \`column\` is included in the \`values\` array."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.is": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.is",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value"
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.like": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.like",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "pattern",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "pattern",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.likeAllOf": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.likeAllOf",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.likeAnyOf": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.likeAnyOf",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "patterns",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.limit": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.limit",
+ "params": [
+ {
+ "name": "count",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The maximum number of rows to return"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
+ }
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Limit the query result by \`count\`."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.lt": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.lt",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.lte": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.lte",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.match": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.match",
+ "params": [
+ {
+ "name": "query",
+ "type": {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ },
+ "valueType": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "query",
+ "type": {
+ "type": "record",
+ "name": "Record",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.maxAffected": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.maxAffected",
+ "params": [
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The maximum number of rows that can be affected"
+ }
+ }
+ ],
+ "comment": {
+ "shortText": "Set the maximum number of rows that can be affected by the query.\\nOnly available in PostgREST v13+ and only works with PATCH and DELETE methods."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.maybeSingle": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.maybeSingle",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be zero or one row (e.g. using \`.limit(1)\`), otherwise\\nthis returns an error."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.neq": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.neq",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "The column to filter on"
+ }
+ },
+ {
+ "name": "value",
+ "comment": {
+ "shortText": "The value to filter with"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Match only rows where \`column\` is not equal to \`value\`."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.not": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.not",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "operator",
+ "type": {
+ "type": "nameOnly",
+ "name": "FilterOperator"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "operator",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.or": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.or",
+ "params": [
+ {
+ "name": "filters",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The filters to use, following PostgREST syntax"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Deprecated, use \`referencedTable\` instead"
+ }
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set this to filter on referenced tables\\ninstead of the parent table"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Match only rows which satisfy at least one of the filters.\\n\\nUnlike most filters, \`filters\` is used as-is and needs to follow [PostgREST\\nsyntax](https://postgrest.org/en/stable/api.html#operators). You also need\\nto make sure it's properly sanitized.\\n\\nIt's currently not possible to do an \`.or()\` filter across multiple tables."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.order": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.order",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
},
{
- "name": "error",
+ "name": "nullsFirst",
"type": {
- "type": "literal",
- "value": null
- }
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
}
]
},
- {
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
"type": "object",
"properties": [
{
- "name": "data",
+ "name": "ascending",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "session",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "user",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
},
{
- "name": "error",
+ "name": "foreignTable",
"type": {
- "type": "nameOnly",
- "name": "AuthError"
- }
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": ""
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
}
]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": ""
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.overlaps": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.overlaps",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Row['ColumnName']"
+ }
}
]
}
}
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.overrideTypes": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.overrideTypes",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
},
"comment": {
- "shortText": "Log in a user given a User supplied OTP or TokenHash received through mobile or email."
+ "shortText": "Override the type of the returned \`data\` field in the response."
}
},
- "@supabase/auth-js.NavigatorLockAcquireTimeoutError.constructor": {
- "name": "@supabase/auth-js.NavigatorLockAcquireTimeoutError.constructor",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.range": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.range",
"params": [
{
- "name": "message",
+ "name": "from",
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The starting index from which to limit the result"
}
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "NavigatorLockAcquireTimeoutError"
- }
- }
- }
- }
- },
- {
- "name": "@supabase/postgrest-js",
- "methods": {
- "@supabase/postgrest-js.PostgrestBuilder.constructor": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.constructor",
- "params": [
+ },
{
- "name": "builder",
+ "name": "to",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The last index to which to limit the result"
+ }
+ },
+ {
+ "name": "options",
"type": {
"type": "object",
"properties": [
{
- "name": "body",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- },
- "isOptional": true
- },
- {
- "name": "fetch",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "input",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "RequestInfo"
- },
- {
- "type": "nameOnly",
- "name": "URL"
- }
- ]
- }
- },
- {
- "name": "init",
- "type": {
- "type": "nameOnly",
- "name": "RequestInit"
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "nameOnly",
- "name": "Response"
- }
- }
- },
- "comment": {
- "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- },
- "isOptional": true
- },
- {
- "name": "headers",
- "type": {
- "type": "nameOnly",
- "name": "HeadersInit"
- }
- },
- {
- "name": "isMaybeSingle",
+ "name": "foreignTable",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
- },
- {
- "name": "method",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "GET"
- },
- {
- "type": "literal",
- "value": "HEAD"
- },
- {
- "type": "literal",
- "value": "POST"
- },
- {
- "type": "literal",
- "value": "PATCH"
- },
- {
- "type": "literal",
- "value": "DELETE"
- }
- ]
+ "isOptional": true,
+ "comment": {
+ "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
}
},
{
- "name": "schema",
+ "name": "referencedTable",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
- },
- {
- "name": "shouldThrowOnError",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "signal",
- "type": {
- "type": "nameOnly",
- "name": "AbortSignal"
- },
- "isOptional": true
- },
- {
- "name": "url",
- "type": {
- "type": "nameOnly",
- "name": "URL"
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
}
}
]
+ },
+ "comment": {
+ "shortText": "Named parameters"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Limit the query result by starting at an offset \`from\` and ending at the offset \`to\`.\\nOnly records within this range are returned.\\nThis respects the query order and if there is no order clause the range could behave unexpectedly.\\nThe \`from\` and \`to\` values are 0-based and inclusive: \`range(1, 3)\` will include the second, third\\nand fourth rows of the query."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rangeAdjacent": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeAdjacent",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGt": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGt",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGte": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGte",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLt": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLt",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLte": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLte",
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "nameOnly",
+ "name": "ColumnName"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
}
],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "range",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.returns": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.returns",
+ "params": [],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "PostgrestTransformBuilder"
}
+ },
+ "comment": {
+ "shortText": "Override the type of the returned \`data\`."
}
},
- "@supabase/postgrest-js.PostgrestBuilder.overrideTypes": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.overrideTypes",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.rollback": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rollback",
"params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Rollback the query.\\n\\n\`data\` will still be returned, but the query is not committed."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.select": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.select",
+ "params": [
+ {
+ "name": "columns",
+ "type": {
+ "type": "nameOnly",
+ "name": "Query"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The columns to retrieve, separated by commas"
+ }
+ }
+ ],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "PostgrestFilterBuilder"
}
},
"comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
+ "shortText": "Perform a SELECT on the query result.\\n\\nBy default, \`.insert()\`, \`.update()\`, \`.upsert()\`, and \`.delete()\` do not\\nreturn modified rows. By calling this method, modified rows are returned in\\n\`data\`."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestFilterBuilder.setHeader": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.setHeader",
+ "params": [
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "value",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Set an HTTP header for the request."
}
},
- "@supabase/postgrest-js.PostgrestBuilder.returns": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.returns",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.single": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.single",
"params": [],
"ret": {
"type": {
@@ -31340,25 +72061,63 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Override the type of the returned \`data\`."
+ "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be one row (e.g. using \`.limit(1)\`), otherwise this\\nreturns an error."
}
},
- "@supabase/postgrest-js.PostgrestBuilder.setHeader": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.setHeader",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.textSearch": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.textSearch",
"params": [
{
- "name": "name",
+ "name": "column",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "ColumnName"
}
},
{
- "name": "value",
+ "name": "query",
"type": {
"type": "intrinsic",
"name": "string"
}
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "plain"
+ },
+ {
+ "type": "literal",
+ "value": "phrase"
+ },
+ {
+ "type": "literal",
+ "value": "websearch"
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
@@ -31367,12 +72126,73 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "this"
}
},
- "comment": {
- "shortText": "Set an HTTP header for the request."
- }
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "column",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "query",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "plain"
+ },
+ {
+ "type": "literal",
+ "value": "phrase"
+ },
+ {
+ "type": "literal",
+ "value": "websearch"
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ }
+ ]
},
- "@supabase/postgrest-js.PostgrestBuilder.then": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.then",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.then": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.then",
"params": [
{
"name": "onfulfilled",
@@ -31387,7 +72207,104 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "function",
"params": [
{
- "name": "value"
+ "name": "value",
+ "type": {
+ "type": "union",
+ "name": "PostgrestSingleResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "PostgrestResponseSuccess",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusText",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "PostgrestResponseFailure",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestError"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusText",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
],
"ret": {
@@ -31467,28 +72384,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
}
},
- "@supabase/postgrest-js.PostgrestBuilder.throwOnError": {
- "name": "@supabase/postgrest-js.PostgrestBuilder.throwOnError",
+ "@supabase/postgrest-js.PostgrestFilterBuilder.throwOnError": {
+ "name": "@supabase/postgrest-js.PostgrestFilterBuilder.throwOnError",
"params": [],
"comment": {
"shortText": "If there's an error with the query, throwOnError will reject the promise by\\nthrowing the error instead of returning it as part of a successful response.\\n\\nhttps://github.com/supabase/supabase-js/issues/92"
}
},
- "@supabase/postgrest-js.PostgrestClient.constructor": {
- "name": "@supabase/postgrest-js.PostgrestClient.constructor",
+ "@supabase/postgrest-js.PostgrestQueryBuilder.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.constructor",
"params": [
{
"name": "url",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "URL of the PostgREST endpoint"
+ "type": "nameOnly",
+ "name": "URL"
}
},
{
- "name": "options",
"type": {
"type": "object",
"properties": [
@@ -31504,11 +72417,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "nameOnly",
- "name": "RequestInfo"
+ "name": "URL"
},
{
"type": "nameOnly",
- "name": "URL"
+ "name": "RequestInfo"
}
]
}
@@ -31536,10 +72449,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
}
},
- "isOptional": true,
- "comment": {
- "shortText": "Custom fetch"
- }
+ "isOptional": true
},
{
"name": "headers",
@@ -31547,20 +72457,57 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "nameOnly",
"name": "HeadersInit"
},
- "isOptional": true,
- "comment": {
- "shortText": "Custom headers"
- }
+ "isOptional": true
},
{
"name": "schema",
"type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.default.SchemaName"
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestQueryBuilder"
+ }
+ }
+ },
+ "@supabase/postgrest-js.PostgrestQueryBuilder.delete": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.delete",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
},
"isOptional": true,
"comment": {
- "shortText": "Postgres schema to switch to"
+ "shortText": "Count algorithm to use to count deleted rows.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
}
}
]
@@ -31573,71 +72520,133 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestClient"
+ "name": "PostgrestFilterBuilder"
}
},
"comment": {
- "shortText": "Creates a PostgREST client."
+ "shortText": "Perform a DELETE on the table or view.\\n\\nBy default, deleted rows are not returned. To return it, chain the call\\nwith \`.select()\` after filters."
}
},
- "@supabase/postgrest-js.PostgrestClient.from": {
- "name": "@supabase/postgrest-js.PostgrestClient.from",
+ "@supabase/postgrest-js.PostgrestQueryBuilder.insert": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.insert",
"params": [
{
- "name": "relation",
+ "name": "values",
"type": {
"type": "nameOnly",
- "name": "TableName"
+ "name": "Row"
}
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestQueryBuilder"
+ "name": "PostgrestFilterBuilder"
}
},
"altSignatures": [
{
"params": [
{
- "name": "relation",
+ "name": "values",
"type": {
- "type": "nameOnly",
- "name": "ViewName"
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Row"
+ }
}
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "defaultToNull",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestQueryBuilder"
+ "name": "PostgrestFilterBuilder"
}
}
}
]
},
- "@supabase/postgrest-js.PostgrestClient.rpc": {
- "name": "@supabase/postgrest-js.PostgrestClient.rpc",
+ "@supabase/postgrest-js.PostgrestQueryBuilder.select": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.select",
"params": [
{
- "name": "fn",
- "type": {
- "type": "nameOnly",
- "name": "FnName"
- },
- "comment": {
- "shortText": "The function name to call"
- }
- },
- {
- "name": "args",
+ "name": "columns",
"type": {
"type": "nameOnly",
- "name": "Args"
+ "name": "Query"
},
+ "isOptional": true,
"comment": {
- "shortText": "The arguments to pass to the function call"
+ "shortText": "The columns to retrieve, separated by commas. Columns can be renamed when returned with \`customName:columnName\`"
}
},
{
@@ -31666,18 +72675,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true,
"comment": {
- "shortText": "Count algorithm to use to count rows returned by the\\nfunction. Only applicable for [set-returning\\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
- }
- },
- {
- "name": "get",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "When set to \`true\`, the function will be called with\\nread-only access mode."
+ "shortText": "Count algorithm to use to count rows in the table or view.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
}
},
{
@@ -31693,6 +72691,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
]
},
+ "isOptional": true,
"comment": {
"shortText": "Named parameters"
}
@@ -31705,82 +72704,210 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Perform a function call."
+ "shortText": "Perform a SELECT query on the table or view."
}
},
- "@supabase/postgrest-js.PostgrestClient.schema": {
- "name": "@supabase/postgrest-js.PostgrestClient.schema",
+ "@supabase/postgrest-js.PostgrestQueryBuilder.update": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.update",
"params": [
{
- "name": "schema",
+ "name": "values",
"type": {
"type": "nameOnly",
- "name": "DynamicSchema"
+ "name": "Row"
},
"comment": {
- "shortText": "The schema to query"
+ "shortText": "The values to update with"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Count algorithm to use to count updated rows.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
}
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestClient"
+ "name": "PostgrestFilterBuilder"
}
},
"comment": {
- "shortText": "Select a schema to query or perform an function (rpc) call.\\n\\nThe schema needs to be on the list of exposed schemas inside Supabase."
+ "shortText": "Perform an UPDATE on the table or view.\\n\\nBy default, updated rows are not returned. To return it, chain the call\\nwith \`.select()\` after filters."
}
},
- "@supabase/postgrest-js.PostgrestError.constructor": {
- "name": "@supabase/postgrest-js.PostgrestError.constructor",
+ "@supabase/postgrest-js.PostgrestQueryBuilder.upsert": {
+ "name": "@supabase/postgrest-js.PostgrestQueryBuilder.upsert",
"params": [
{
- "name": "context",
+ "name": "values",
+ "type": {
+ "type": "nameOnly",
+ "name": "Row"
+ }
+ },
+ {
+ "name": "options",
"type": {
"type": "object",
"properties": [
{
- "name": "code",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "details",
+ "name": "count",
"type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true
},
{
- "name": "hint",
+ "name": "ignoreDuplicates",
"type": {
"type": "intrinsic",
- "name": "string"
- }
+ "name": "boolean"
+ },
+ "isOptional": true
},
{
- "name": "message",
+ "name": "onConflict",
"type": {
"type": "intrinsic",
"name": "string"
- }
+ },
+ "isOptional": true
}
]
- }
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestError"
+ "name": "PostgrestFilterBuilder"
}
- }
+ },
+ "altSignatures": [
+ {
+ "params": [
+ {
+ "name": "values",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Row"
+ }
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "defaultToNull",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "ignoreDuplicates",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "onConflict",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestFilterBuilder"
+ }
+ }
+ }
+ ]
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.constructor": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.constructor",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.constructor": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.constructor",
"params": [
{
"name": "builder",
@@ -31807,11 +72934,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "nameOnly",
- "name": "RequestInfo"
+ "name": "URL"
},
{
"type": "nameOnly",
- "name": "URL"
+ "name": "RequestInfo"
}
]
}
@@ -31922,12 +73049,12 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "name": "PostgrestTransformBuilder"
}
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.abortSignal": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.abortSignal",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.abortSignal": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.abortSignal",
"params": [
{
"name": "signal",
@@ -31950,206 +73077,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Set the AbortSignal for the fetch request."
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.containedBy": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.containedBy",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- },
- {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- },
- {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.contains": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.contains",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- },
- {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- },
- {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.csv": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.csv",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.csv": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.csv",
"params": [],
"ret": {
"type": {
@@ -32161,38 +73090,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Return \`data\` as a string in CSV format."
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.eq": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.eq",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- },
- "comment": {
- "shortText": "The column to filter on"
- }
- },
- {
- "name": "value",
- "comment": {
- "shortText": "The value to filter with"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Match only rows where \`column\` is equal to \`value\`.\\n\\nTo check if the value of \`column\` is NULL, you should use \`.is()\` instead."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.explain": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.explain",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.explain": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.explain",
"params": [
{
"name": "options",
@@ -32285,181 +73184,23 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "union",
"subTypes": [
- {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
- },
- {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
- }
- ]
- }
- },
- "comment": {
- "shortText": "Return \`data\` as the EXPLAIN plan for the query.\\n\\nYou need to enable the\\n[db_plan_enabled](https://supabase.com/docs/guides/database/debugging-performance#enabling-explain)\\nsetting before using this method."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.filter": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.filter",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "operator",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "FilterOperator"
- },
- {
- "type": "literal",
- "value": "not.eq"
- },
- {
- "type": "literal",
- "value": "not.neq"
- },
- {
- "type": "literal",
- "value": "not.gt"
- },
- {
- "type": "literal",
- "value": "not.gte"
- },
- {
- "type": "literal",
- "value": "not.lt"
- },
- {
- "type": "literal",
- "value": "not.lte"
- },
- {
- "type": "literal",
- "value": "not.like"
- },
- {
- "type": "literal",
- "value": "not.ilike"
- },
- {
- "type": "literal",
- "value": "not.is"
- },
- {
- "type": "literal",
- "value": "not.in"
- },
- {
- "type": "literal",
- "value": "not.cs"
- },
- {
- "type": "literal",
- "value": "not.cd"
- },
- {
- "type": "literal",
- "value": "not.sl"
- },
- {
- "type": "literal",
- "value": "not.sr"
- },
- {
- "type": "literal",
- "value": "not.nxl"
- },
- {
- "type": "literal",
- "value": "not.nxr"
- },
- {
- "type": "literal",
- "value": "not.adj"
- },
- {
- "type": "literal",
- "value": "not.ov"
- },
- {
- "type": "literal",
- "value": "not.fts"
- },
- {
- "type": "literal",
- "value": "not.plfts"
- },
- {
- "type": "literal",
- "value": "not.phfts"
- },
- {
- "type": "literal",
- "value": "not.wfts"
- }
- ]
- }
- },
- {
- "name": "value",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "operator",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
},
{
- "name": "value",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
}
- }
+ ]
}
- ]
+ },
+ "comment": {
+ "shortText": "Return \`data\` as the EXPLAIN plan for the query.\\n\\nYou need to enable the\\n[db_plan_enabled](https://supabase.com/docs/guides/database/debugging-performance#enabling-explain)\\nsetting before using this method."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.geojson": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.geojson",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.geojson": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.geojson",
"params": [],
"ret": {
"type": {
@@ -32471,21 +73212,50 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"shortText": "Return \`data\` as an object in [GeoJSON](https://geojson.org) format."
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.gt": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.gt",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.limit": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.limit",
"params": [
{
- "name": "column",
+ "name": "count",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The maximum number of rows to return"
}
},
{
- "name": "value",
+ "name": "options",
"type": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
+ "type": "object",
+ "properties": [
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
+ }
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
}
}
],
@@ -32495,86 +73265,43 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "this"
}
},
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
+ "comment": {
+ "shortText": "Limit the query result by \`count\`."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.gte": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.gte",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.maxAffected": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.maxAffected",
"params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
{
"name": "value",
"type": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "comment": {
+ "shortText": "The maximum number of rows that can be affected"
}
}
],
+ "comment": {
+ "shortText": "Set the maximum number of rows that can be affected by the query.\\nOnly available in PostgREST v13+ and only works with PATCH and DELETE methods."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.maybeSingle": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.maybeSingle",
+ "params": [],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
}
},
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
+ "comment": {
+ "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be zero or one row (e.g. using \`.limit(1)\`), otherwise\\nthis returns an error."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.ilike": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilike",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.order": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.order",
"params": [
{
"name": "column",
@@ -32584,11 +73311,37 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "pattern",
+ "name": "options",
"type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
@@ -32608,11 +73361,37 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "pattern",
+ "name": "options",
"type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
@@ -32621,55 +73400,48 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "this"
}
}
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAllOf": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAllOf",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
},
- {
- "name": "patterns",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
"name": "column",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "ColumnName"
}
},
{
- "name": "patterns",
+ "name": "options",
"type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
@@ -32677,38 +73449,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "intrinsic",
"name": "this"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAnyOf": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.ilikeAnyOf",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": ""
}
},
- {
- "name": "patterns",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
@@ -32719,14 +73464,37 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
{
- "name": "patterns",
+ "name": "options",
"type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
+ "type": "object",
+ "properties": [
+ {
+ "name": "ascending",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "nullsFirst",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
],
"ret": {
@@ -32734,30 +73502,80 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "intrinsic",
"name": "this"
}
+ },
+ "comment": {
+ "shortText": ""
}
}
]
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.in": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.in",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.overrideTypes": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.overrideTypes",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Override the type of the returned \`data\` field in the response."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.range": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.range",
"params": [
{
- "name": "column",
+ "name": "from",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "intrinsic",
+ "name": "number"
},
"comment": {
- "shortText": "The column to filter on"
+ "shortText": "The starting index from which to limit the result"
}
},
{
- "name": "values",
+ "name": "to",
"type": {
- "type": "array"
+ "type": "intrinsic",
+ "name": "number"
},
"comment": {
- "shortText": "The values array to filter with"
+ "shortText": "The last index to which to limit the result"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "foreignTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
+ }
+ },
+ {
+ "name": "referencedTable",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Named parameters"
}
}
],
@@ -32768,77 +73586,72 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Match only rows where \`column\` is included in the \`values\` array."
+ "shortText": "Limit the query result by starting at an offset \`from\` and ending at the offset \`to\`.\\nOnly records within this range are returned.\\nThis respects the query order and if there is no order clause the range could behave unexpectedly.\\nThe \`from\` and \`to\` values are 0-based and inclusive: \`range(1, 3)\` will include the second, third\\nand fourth rows of the query."
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.is": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.is",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "value"
+ "@supabase/postgrest-js.PostgrestTransformBuilder.returns": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.returns",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestTransformBuilder"
}
- ],
+ },
+ "comment": {
+ "shortText": "Override the type of the returned \`data\`."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.rollback": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.rollback",
+ "params": [],
"ret": {
"type": {
"type": "intrinsic",
"name": "this"
}
},
- "altSignatures": [
+ "comment": {
+ "shortText": "Rollback the query.\\n\\n\`data\` will still be returned, but the query is not committed."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.select": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.select",
+ "params": [
{
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "boolean"
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
+ "name": "columns",
+ "type": {
+ "type": "nameOnly",
+ "name": "Query"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The columns to retrieve, separated by commas"
}
}
- ]
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestFilterBuilder"
+ }
+ },
+ "comment": {
+ "shortText": "Perform a SELECT on the query result.\\n\\nBy default, \`.insert()\`, \`.update()\`, \`.upsert()\`, and \`.delete()\` do not\\nreturn modified rows. By calling this method, modified rows are returned in\\n\`data\`."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.like": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.like",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.setHeader": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.setHeader",
"params": [
{
- "name": "column",
+ "name": "name",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "pattern",
+ "name": "value",
"type": {
"type": "intrinsic",
"name": "string"
@@ -32851,1282 +73664,1676 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "this"
}
},
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "pattern",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
+ "comment": {
+ "shortText": "Set an HTTP header for the request."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.single": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.single",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestBuilder"
}
- ]
+ },
+ "comment": {
+ "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be one row (e.g. using \`.limit(1)\`), otherwise this\\nreturns an error."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.likeAllOf": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.likeAllOf",
+ "@supabase/postgrest-js.PostgrestTransformBuilder.then": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.then",
"params": [
{
- "name": "column",
+ "name": "onfulfilled",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "name": "PostgrestSingleResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "PostgrestResponseSuccess",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusText",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "PostgrestResponseFailure",
+ "properties": [
+ {
+ "name": "count",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "PostgrestError"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusText",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult1"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is resolved."
}
},
{
- "name": "patterns",
+ "name": "onrejected",
"type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "reason",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult2"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is rejected."
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "PromiseLike"
}
},
- "altSignatures": [
+ "comment": {
+ "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ }
+ },
+ "@supabase/postgrest-js.PostgrestTransformBuilder.throwOnError": {
+ "name": "@supabase/postgrest-js.PostgrestTransformBuilder.throwOnError",
+ "params": [],
+ "comment": {
+ "shortText": "If there's an error with the query, throwOnError will reject the promise by\\nthrowing the error instead of returning it as part of a successful response.\\n\\nhttps://github.com/supabase/supabase-js/issues/92"
+ }
+ }
+ }
+ },
+ {
+ "name": "@supabase/realtime-js",
+ "methods": {
+ "@supabase/realtime-js.RealtimeChannel.constructor": {
+ "name": "@supabase/realtime-js.RealtimeChannel.constructor",
+ "params": [
{
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "patterns",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
+ "name": "topic",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Topic name can be any string."
+ }
+ },
+ {
+ "name": "params",
+ "type": {
+ "name": "RealtimeChannelOptions",
+ "type": "object",
+ "properties": [
+ {
+ "name": "config",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "broadcast",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ack",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "replay",
+ "type": {
+ "type": "nameOnly",
+ "name": "ReplayOption"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "self",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
+ }
+ },
+ {
+ "name": "presence",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "enabled",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "key option is used to track presence payload across clients"
+ }
+ },
+ {
+ "name": "private",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ }
+ ]
}
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
+ ]
+ }
+ },
+ {
+ "name": "socket",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeClient"
}
}
- ]
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.likeAnyOf": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.likeAnyOf",
+ "@supabase/realtime-js.RealtimeChannel.httpSend": {
+ "name": "@supabase/realtime-js.RealtimeChannel.httpSend",
"params": [
{
- "name": "column",
+ "name": "event",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The name of the broadcast event"
}
},
{
- "name": "patterns",
+ "name": "payload",
"type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "comment": {
+ "shortText": "Payload to be sent (required)"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Options including timeout"
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "patterns",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "success",
+ "type": {
+ "type": "literal",
+ "value": true
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "error",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "success",
+ "type": {
+ "type": "literal",
+ "value": false
+ }
+ }
+ ]
+ }
+ ]
}
}
- ]
+ },
+ "comment": {
+ "shortText": "Sends a broadcast message explicitly via REST API.\\n\\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.limit": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.limit",
+ "@supabase/realtime-js.RealtimeChannel.on": {
+ "name": "@supabase/realtime-js.RealtimeChannel.on",
"params": [
{
- "name": "count",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The maximum number of rows to return"
+ "type": "literal",
+ "value": "presence"
}
},
{
- "name": "options",
+ "name": "filter",
"type": {
"type": "object",
"properties": [
{
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
- }
- },
- {
- "name": "referencedTable",
+ "name": "event",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
+ "type": "literal",
+ "value": "sync"
}
}
]
- },
- "comment": {
- "shortText": "Named parameters"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Limit the query result by \`count\`."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.lt": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.lt",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
}
},
{
- "name": "value",
+ "name": "callback",
"type": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
},
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
+ },
"altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "presence"
}
},
{
- "name": "value",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "unknown"
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "name": "RealtimePresenceJoinPayload",
+ "type": "object",
+ "properties": [
+ {
+ "name": "currentPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ },
+ {
+ "name": "event"
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "newPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.lte": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.lte",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "value",
- "type": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "presence"
}
},
{
- "name": "value",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "unknown"
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "name": "RealtimePresenceLeavePayload",
+ "type": "object",
+ "properties": [
+ {
+ "name": "currentPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ },
+ {
+ "name": "event"
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "leftPresences",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.match": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.match",
- "params": [
- {
- "name": "query",
- "type": {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "nameOnly",
- "name": "ColumnName"
- },
- "valueType": {
"type": "nameOnly",
- "name": "Row['ColumnName']"
+ "name": "RealtimeChannel"
}
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
+ },
{
"params": [
{
- "name": "query",
+ "name": "type",
"type": {
- "type": "record",
- "name": "Record",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "unknown"
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "union",
+ "name": "RealtimePostgresChangesPayload",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresInsertPayload"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresUpdatePayload"
+ },
+ {
+ "type": "nameOnly",
+ "name": "RealtimePostgresDeletePayload"
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
}
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.maxAffected": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.maxAffected",
- "params": [
- {
- "name": "value",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The maximum number of rows that can be affected"
- }
- }
- ],
- "comment": {
- "shortText": "Set the maximum number of rows that can be affected by the query.\\nOnly available in PostgREST v13+ and only works with PATCH and DELETE methods."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.maybeSingle": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.maybeSingle",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
- }
- },
- "comment": {
- "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be zero or one row (e.g. using \`.limit(1)\`), otherwise\\nthis returns an error."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.neq": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.neq",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
},
"comment": {
- "shortText": "The column to filter on"
- }
- },
- {
- "name": "value",
- "comment": {
- "shortText": "The value to filter with"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Match only rows where \`column\` is not equal to \`value\`."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.not": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.not",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "operator",
- "type": {
- "type": "nameOnly",
- "name": "FilterOperator"
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "value",
- "type": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "postgres_changes"
}
},
{
- "name": "operator",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "name": "RealtimePostgresChangesFilter",
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
+ },
+ {
+ "name": "schema",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
+ },
+ {
+ "name": "table",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
+ }
+ ]
}
},
{
- "name": "value",
+ "name": "callback",
"type": {
- "type": "intrinsic",
- "name": "unknown"
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresInsertPayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.or": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.or",
- "params": [
- {
- "name": "filters",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The filters to use, following PostgREST syntax"
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Deprecated, use \`referencedTable\` instead"
- }
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Set this to filter on referenced tables\\ninstead of the parent table"
- }
- }
- ]
},
"comment": {
- "shortText": "Named parameters"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Match only rows which satisfy at least one of the filters.\\n\\nUnlike most filters, \`filters\` is used as-is and needs to follow [PostgREST\\nsyntax](https://postgrest.org/en/stable/api.html#operators). You also need\\nto make sure it's properly sanitized.\\n\\nIt's currently not possible to do an \`.or()\` filter across multiple tables."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.order": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.order",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "ascending",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "nullsFirst",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "undefined"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "postgres_changes"
}
},
{
- "name": "options",
+ "name": "filter",
"type": {
+ "name": "RealtimePostgresChangesFilter",
"type": "object",
"properties": [
{
- "name": "ascending",
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
},
{
- "name": "nullsFirst",
+ "name": "schema",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
},
{
- "name": "referencedTable",
+ "name": "table",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
}
]
- },
- "isOptional": true
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresUpdatePayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
},
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "literal",
+ "value": "postgres_changes"
}
},
{
- "name": "options",
+ "name": "filter",
"type": {
+ "name": "RealtimePostgresChangesFilter",
"type": "object",
"properties": [
{
- "name": "ascending",
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "T"
+ },
+ "comment": {
+ "shortText": "The type of database change to listen to."
+ }
+ },
+ {
+ "name": "filter",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Receive database changes when filter is matched."
+ }
},
{
- "name": "foreignTable",
+ "name": "schema",
"type": {
"type": "intrinsic",
- "name": "undefined"
+ "name": "string"
},
- "isOptional": true
+ "comment": {
+ "shortText": "The database schema to listen to."
+ }
},
{
- "name": "nullsFirst",
+ "name": "table",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "The database table to listen to."
+ }
}
]
- },
- "isOptional": true
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimePostgresDeletePayload"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
},
"comment": {
- "shortText": ""
+ "shortText": "Creates an event handler that listens to changes."
}
},
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "broadcast"
+ },
+ "comment": {
+ "shortText": "One of \\"broadcast\\", \\"presence\\", or \\"postgres_changes\\"."
}
},
{
- "name": "options",
+ "name": "filter",
"type": {
"type": "object",
"properties": [
{
- "name": "ascending",
+ "name": "event",
"type": {
"type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Custom object specific to the Realtime feature detailing which payloads to receive."
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
{
- "name": "foreignTable",
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "meta",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "replayed",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Function to be invoked when event handler is triggered."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
+ }
+ },
+ {
+ "params": [
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "name": "filter",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "isOptional": true
- },
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
{
- "name": "nullsFirst",
+ "name": "payload",
"type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "meta",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "replayed",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
}
- ]
- },
- "isOptional": true
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
},
"comment": {
- "shortText": ""
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.overlaps": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.overlaps",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "value",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Row['ColumnName']"
- }
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "broadcast"
}
},
{
- "name": "value",
+ "name": "filter",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
+ "type": "object",
+ "properties": [
{
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "unknown"
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "ALL"
}
}
]
}
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "*",
+ "name": "ALL"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastPayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.overrideTypes": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.overrideTypes",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
- }
- },
- "comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.range": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.range",
- "params": [
- {
- "name": "from",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The starting index from which to limit the result"
- }
- },
- {
- "name": "to",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The last index to which to limit the result"
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
- }
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
- }
- }
- ]
},
"comment": {
- "shortText": "Named parameters"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Limit the query result by starting at an offset \`from\` and ending at the offset \`to\`.\\nOnly records within this range are returned.\\nThis respects the query order and if there is no order clause the range could behave unexpectedly.\\nThe \`from\` and \`to\` values are 0-based and inclusive: \`range(1, 3)\` will include the second, third\\nand fourth rows of the query."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rangeAdjacent": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeAdjacent",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "broadcast"
}
},
{
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGt": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGt",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "INSERT"
+ }
+ }
+ ]
}
},
{
- "name": "range",
+ "name": "callback",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "INSERT",
+ "name": "INSERT"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastInsertPayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGte": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeGte",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "broadcast"
}
},
{
- "name": "range",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "UPDATE"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "UPDATE",
+ "name": "UPDATE"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastUpdatePayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLt": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLt",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "broadcast"
}
},
{
- "name": "range",
+ "name": "filter",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "DELETE"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "event",
+ "type": {
+ "type": "literal",
+ "value": "DELETE",
+ "name": "DELETE"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeBroadcastDeletePayload"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
- }
- }
- ]
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLte": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rangeLte",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
},
- {
- "name": "range",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
{
"params": [
{
- "name": "column",
+ "name": "type",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "system"
}
},
{
- "name": "range",
+ "name": "filter"
+ },
+ {
+ "name": "callback",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "function",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
}
+ },
+ "comment": {
+ "shortText": "Creates an event handler that listens to changes."
}
}
]
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.returns": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.returns",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestTransformBuilder"
- }
- },
- "comment": {
- "shortText": "Override the type of the returned \`data\`."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.rollback": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.rollback",
+ "@supabase/realtime-js.RealtimeChannel.presenceState": {
+ "name": "@supabase/realtime-js.RealtimeChannel.presenceState",
"params": [],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Rollback the query.\\n\\n\`data\` will still be returned, but the query is not committed."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.select": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.select",
- "params": [
- {
- "name": "columns",
- "type": {
- "type": "nameOnly",
- "name": "Query"
- },
- "isOptional": true,
- "comment": {
- "shortText": "The columns to retrieve, separated by commas"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
- }
- },
- "comment": {
- "shortText": "Perform a SELECT on the query result.\\n\\nBy default, \`.insert()\`, \`.update()\`, \`.upsert()\`, and \`.delete()\` do not\\nreturn modified rows. By calling this method, modified rows are returned in\\n\`data\`."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.setHeader": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.setHeader",
- "params": [
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
- "type": {
+ "name": "RealtimePresenceState",
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
"name": "string"
+ },
+ "valueType": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "Presence"
+ }
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Set an HTTP header for the request."
- }
- },
- "@supabase/postgrest-js.PostgrestFilterBuilder.single": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.single",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
- }
- },
- "comment": {
- "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be one row (e.g. using \`.limit(1)\`), otherwise this\\nreturns an error."
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.textSearch": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.textSearch",
+ "@supabase/realtime-js.RealtimeChannel.send": {
+ "name": "@supabase/realtime-js.RealtimeChannel.send",
"params": [
{
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "query",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "options",
+ "name": "args",
"type": {
"type": "object",
"properties": [
{
- "name": "config",
+ "name": "event",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "comment": {
+ "shortText": "The name of the event being sent"
+ }
+ },
+ {
+ "name": "payload",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Payload to be sent"
+ }
},
{
"name": "type",
@@ -34135,465 +75342,493 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "plain"
+ "value": "presence"
},
{
"type": "literal",
- "value": "phrase"
+ "value": "broadcast"
},
{
"type": "literal",
- "value": "websearch"
+ "value": "postgres_changes"
}
]
},
- "isOptional": true
+ "comment": {
+ "shortText": "The type of event to send"
+ }
}
]
},
- "isOptional": true
+ "comment": {
+ "shortText": "Arguments to send to channel"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "comment": {
+ "shortText": "Options to be used during the send process"
+ }
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "column",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "query",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "config",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "type",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "plain"
- },
- {
- "type": "literal",
- "value": "phrase"
- },
- {
- "type": "literal",
- "value": "websearch"
- }
- ]
- },
- "isOptional": true
- }
- ]
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
},
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
}
}
- ]
+ },
+ "comment": {
+ "shortText": "Sends a message into the channel."
+ }
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.then": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.then",
+ "@supabase/realtime-js.RealtimeChannel.subscribe": {
+ "name": "@supabase/realtime-js.RealtimeChannel.subscribe",
"params": [
{
- "name": "onfulfilled",
+ "name": "callback",
"type": {
- "type": "union",
- "subTypes": [
+ "type": "function",
+ "params": [
{
- "type": "literal",
- "value": null
+ "name": "status",
+ "type": {
+ "type": "nameOnly",
+ "name": "REALTIME_SUBSCRIBE_STATES"
+ }
},
{
- "type": "function",
- "params": [
- {
- "name": "value",
- "type": {
- "type": "union",
- "name": "PostgrestSingleResponse",
- "subTypes": [
- {
- "type": "object",
- "name": "PostgrestResponseSuccess",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "number"
- }
- ]
- }
- },
- {
- "name": "data",
- "type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T"
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusText",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- },
- {
- "type": "object",
- "name": "PostgrestResponseFailure",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "data",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "PostgrestError"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusText",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult1"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
- }
+ "name": "err",
+ "type": {
+ "type": "nameOnly",
+ "name": "Error"
+ },
+ "isOptional": true
}
- ]
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
},
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is resolved."
+ "isOptional": true
+ },
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ },
+ "comment": {
+ "shortText": "Subscribe registers your client with the server"
+ }
+ },
+ "@supabase/realtime-js.RealtimeChannel.teardown": {
+ "name": "@supabase/realtime-js.RealtimeChannel.teardown",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Teardown the channel.\\n\\nDestroys and stops related timers."
+ }
+ },
+ "@supabase/realtime-js.RealtimeChannel.track": {
+ "name": "@supabase/realtime-js.RealtimeChannel.track",
+ "params": [
+ {
+ "name": "payload",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
}
},
{
- "name": "onrejected",
+ "name": "opts",
"type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
"type": "union",
+ "name": "RealtimeChannelSendResponse",
"subTypes": [
{
"type": "literal",
- "value": null
+ "value": "ok"
},
{
- "type": "function",
- "params": [
- {
- "name": "reason",
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult2"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
- }
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is rejected."
+ }
+ }
+ }
+ },
+ "@supabase/realtime-js.RealtimeChannel.unsubscribe": {
+ "name": "@supabase/realtime-js.RealtimeChannel.unsubscribe",
+ "params": [
+ {
+ "name": "timeout",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PromiseLike"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ "shortText": "Leaves the channel.\\n\\nUnsubscribes from server events, and instructs channel to terminate on server.\\nTriggers onClose() hooks.\\n\\nTo receive leave acknowledgements, use the a \`receive\` hook to bind to the server ack, ie:\\nchannel.unsubscribe().receive(\\"ok\\", () => alert(\\"left!\\") )"
}
},
- "@supabase/postgrest-js.PostgrestFilterBuilder.throwOnError": {
- "name": "@supabase/postgrest-js.PostgrestFilterBuilder.throwOnError",
- "params": [],
- "comment": {
- "shortText": "If there's an error with the query, throwOnError will reject the promise by\\nthrowing the error instead of returning it as part of a successful response.\\n\\nhttps://github.com/supabase/supabase-js/issues/92"
+ "@supabase/realtime-js.RealtimeChannel.untrack": {
+ "name": "@supabase/realtime-js.RealtimeChannel.untrack",
+ "params": [
+ {
+ "name": "opts",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeChannelSendResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
}
},
- "@supabase/postgrest-js.PostgrestQueryBuilder.constructor": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.constructor",
+ "@supabase/realtime-js.RealtimeChannel.updateJoinPayload": {
+ "name": "@supabase/realtime-js.RealtimeChannel.updateJoinPayload",
"params": [
{
- "name": "url",
+ "name": "payload",
"type": {
- "type": "nameOnly",
- "name": "URL"
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.constructor": {
+ "name": "@supabase/realtime-js.RealtimeClient.constructor",
+ "params": [
+ {
+ "name": "endPoint",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The string WebSocket endpoint, ie, \\"ws://example.com/socket\\", \\"wss://example.com\\", \\"/socket\\" (inherited host & protocol)"
}
},
{
+ "name": "options",
"type": {
+ "name": "RealtimeClientOptions",
"type": "object",
"properties": [
{
- "name": "fetch",
+ "name": "accessToken",
"type": {
"type": "function",
- "params": [
- {
- "name": "input",
- "type": {
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
"type": "union",
"subTypes": [
{
- "type": "nameOnly",
- "name": "RequestInfo"
+ "type": "intrinsic",
+ "name": "string"
},
{
- "type": "nameOnly",
- "name": "URL"
+ "type": "literal",
+ "value": null
}
]
}
- },
+ }
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "decode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "encode",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "nameOnly",
+ "name": "Fetch"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatCallback",
+ "type": {
+ "type": "function",
+ "params": [
{
- "name": "init",
+ "name": "status",
"type": {
"type": "nameOnly",
- "name": "RequestInit"
- },
- "isOptional": true
+ "name": "HeartbeatStatus"
+ }
}
],
"ret": {
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "nameOnly",
- "name": "Response"
- }
+ "type": "intrinsic",
+ "name": "void"
}
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "heartbeatIntervalMs",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "log_level",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logger",
+ "type": {
+ "type": "nameOnly",
+ "name": "Function"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "logLevel",
+ "type": {
+ "type": "nameOnly",
+ "name": "LogLevel"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "params",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
},
- "comment": {
- "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
}
},
"isOptional": true
},
{
- "name": "headers",
+ "name": "reconnectAfterMs",
"type": {
"type": "nameOnly",
- "name": "HeadersInit"
+ "name": "Function"
},
"isOptional": true
},
{
- "name": "schema",
+ "name": "timeout",
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
},
"isOptional": true
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestQueryBuilder"
- }
- }
- },
- "@supabase/postgrest-js.PostgrestQueryBuilder.delete": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.delete",
- "params": [
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
+ },
{
- "name": "count",
+ "name": "transport",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
+ "type": "object",
+ "name": "WebSocketLikeConstructor",
+ "properties": []
},
- "isOptional": true,
- "comment": {
- "shortText": "Count algorithm to use to count deleted rows.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
- }
- }
- ]
- },
- "comment": {
- "shortText": "Named parameters"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
- }
- },
- "comment": {
- "shortText": "Perform a DELETE on the table or view.\\n\\nBy default, deleted rows are not returned. To return it, chain the call\\nwith \`.select()\` after filters."
- }
- },
- "@supabase/postgrest-js.PostgrestQueryBuilder.insert": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.insert",
- "params": [
- {
- "name": "values",
- "type": {
- "type": "nameOnly",
- "name": "Row"
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
+ "isOptional": true
+ },
{
- "name": "count",
+ "name": "worker",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "workerUrl",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
"isOptional": true
}
@@ -34601,982 +75836,1110 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"isOptional": true
}
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
- }
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "values",
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Row"
- }
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "defaultToNull",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
- }
- }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeClient"
}
- ]
+ },
+ "comment": {
+ "shortText": "Initializes the Socket."
+ }
},
- "@supabase/postgrest-js.PostgrestQueryBuilder.select": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.select",
+ "@supabase/realtime-js.RealtimeClient.channel": {
+ "name": "@supabase/realtime-js.RealtimeClient.channel",
"params": [
{
- "name": "columns",
+ "name": "topic",
"type": {
- "type": "nameOnly",
- "name": "Query"
- },
- "isOptional": true,
- "comment": {
- "shortText": "The columns to retrieve, separated by commas. Columns can be renamed when returned with \`customName:columnName\`"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "options",
+ "name": "params",
"type": {
+ "name": "RealtimeChannelOptions",
"type": "object",
"properties": [
{
- "name": "count",
+ "name": "config",
"type": {
- "type": "union",
- "subTypes": [
+ "type": "object",
+ "properties": [
{
- "type": "literal",
- "value": "exact"
+ "name": "broadcast",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "ack",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "replay",
+ "type": {
+ "type": "nameOnly",
+ "name": "ReplayOption"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "self",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
+ }
},
{
- "type": "literal",
- "value": "planned"
+ "name": "presence",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "enabled",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "key",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "key option is used to track presence payload across clients"
+ }
},
{
- "type": "literal",
- "value": "estimated"
+ "name": "private",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "Count algorithm to use to count rows in the table or view.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
- }
- },
- {
- "name": "head",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "When set to \`true\`, \`data\` will not be returned.\\nUseful if you only need the count."
}
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "Named parameters"
}
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.connect": {
+ "name": "@supabase/realtime-js.RealtimeClient.connect",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Perform a SELECT query on the table or view."
+ "shortText": "Connects the socket, unless already connected."
}
},
- "@supabase/postgrest-js.PostgrestQueryBuilder.update": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.update",
+ "@supabase/realtime-js.RealtimeClient.connectionState": {
+ "name": "@supabase/realtime-js.RealtimeClient.connectionState",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "CONNECTION_STATE"
+ }
+ },
+ "comment": {
+ "shortText": "Returns the current state of the socket."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.disconnect": {
+ "name": "@supabase/realtime-js.RealtimeClient.disconnect",
"params": [
{
- "name": "values",
+ "name": "code",
"type": {
- "type": "nameOnly",
- "name": "Row"
+ "type": "intrinsic",
+ "name": "number"
},
+ "isOptional": true,
"comment": {
- "shortText": "The values to update with"
+ "shortText": "A numeric status code to send on disconnect."
}
},
{
- "name": "options",
+ "name": "reason",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "Count algorithm to use to count updated rows.\\n\\n\`\\"exact\\"\`: Exact but slow count algorithm. Performs a \`COUNT(*)\` under the\\nhood.\\n\\n\`\\"planned\\"\`: Approximated but fast count algorithm. Uses the Postgres\\nstatistics under the hood.\\n\\n\`\\"estimated\\"\`: Uses exact count for low numbers and planned count for high\\nnumbers."
- }
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
+ "isOptional": true,
"comment": {
- "shortText": "Named parameters"
+ "shortText": "A custom reason for the disconnect."
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "type": "intrinsic",
+ "name": "void"
}
},
"comment": {
- "shortText": "Perform an UPDATE on the table or view.\\n\\nBy default, updated rows are not returned. To return it, chain the call\\nwith \`.select()\` after filters."
+ "shortText": "Disconnects the socket."
}
},
- "@supabase/postgrest-js.PostgrestQueryBuilder.upsert": {
- "name": "@supabase/postgrest-js.PostgrestQueryBuilder.upsert",
+ "@supabase/realtime-js.RealtimeClient.endpointURL": {
+ "name": "@supabase/realtime-js.RealtimeClient.endpointURL",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Returns the URL of the websocket."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.flushSendBuffer": {
+ "name": "@supabase/realtime-js.RealtimeClient.flushSendBuffer",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Flushes send buffer"
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.getChannels": {
+ "name": "@supabase/realtime-js.RealtimeClient.getChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Returns all created channels"
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.isConnected": {
+ "name": "@supabase/realtime-js.RealtimeClient.isConnected",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` is the connection is open."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.isConnecting": {
+ "name": "@supabase/realtime-js.RealtimeClient.isConnecting",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` if the connection is currently connecting."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.isDisconnecting": {
+ "name": "@supabase/realtime-js.RealtimeClient.isDisconnecting",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ "comment": {
+ "shortText": "Returns \`true\` if the connection is currently disconnecting."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.log": {
+ "name": "@supabase/realtime-js.RealtimeClient.log",
"params": [
{
- "name": "values",
+ "name": "kind",
"type": {
- "type": "nameOnly",
- "name": "Row"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "options",
+ "name": "msg",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "ignoreDuplicates",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "onConflict",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "data",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
},
"isOptional": true
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "type": "intrinsic",
+ "name": "void"
}
},
- "altSignatures": [
+ "comment": {
+ "shortText": "Logs the message.\\n\\nFor customized logging, \`this.logger\` can be overridden."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.onHeartbeat": {
+ "name": "@supabase/realtime-js.RealtimeClient.onHeartbeat",
+ "params": [
{
- "params": [
- {
- "name": "values",
- "type": {
- "type": "array",
- "elemType": {
+ "name": "callback",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "status",
+ "type": {
"type": "nameOnly",
- "name": "Row"
+ "name": "HeartbeatStatus"
}
}
- },
- {
- "name": "options",
+ ],
+ "ret": {
"type": {
- "type": "object",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "defaultToNull",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "ignoreDuplicates",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "onConflict",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "type": "intrinsic",
+ "name": "void"
+ }
}
}
}
- ]
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.constructor": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.constructor",
- "params": [
- {
- "name": "builder",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "body",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- },
- "isOptional": true
- },
- {
- "name": "fetch",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "input",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "RequestInfo"
- },
- {
- "type": "nameOnly",
- "name": "URL"
- }
- ]
- }
- },
- {
- "name": "init",
- "type": {
- "type": "nameOnly",
- "name": "RequestInit"
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "nameOnly",
- "name": "Response"
- }
- }
- },
- "comment": {
- "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- },
- "isOptional": true
- },
+ "@supabase/realtime-js.RealtimeClient.push": {
+ "name": "@supabase/realtime-js.RealtimeClient.push",
+ "params": [
+ {
+ "name": "data",
+ "type": {
+ "name": "RealtimeMessage",
+ "type": "object",
+ "properties": [
{
- "name": "headers",
+ "name": "event",
"type": {
- "type": "nameOnly",
- "name": "HeadersInit"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "isMaybeSingle",
+ "name": "join_ref",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
"isOptional": true
},
{
- "name": "method",
+ "name": "payload",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "GET"
- },
- {
- "type": "literal",
- "value": "HEAD"
- },
- {
- "type": "literal",
- "value": "POST"
- },
- {
- "type": "literal",
- "value": "PATCH"
- },
- {
- "type": "literal",
- "value": "DELETE"
- }
- ]
+ "type": "intrinsic",
+ "name": "any"
}
},
{
- "name": "schema",
+ "name": "ref",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "isOptional": true
+ }
},
{
- "name": "shouldThrowOnError",
+ "name": "topic",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ },
+ "comment": {
+ "shortText": "Push out a message if the socket is connected.\\n\\nIf the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.removeAllChannels": {
+ "name": "@supabase/realtime-js.RealtimeClient.removeAllChannels",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "array",
+ "elemType": {
+ "type": "union",
+ "name": "RealtimeRemoveChannelResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
},
- "isOptional": true
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes all channels"
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.removeChannel": {
+ "name": "@supabase/realtime-js.RealtimeClient.removeChannel",
+ "params": [
+ {
+ "name": "channel",
+ "type": {
+ "type": "nameOnly",
+ "name": "RealtimeChannel"
+ },
+ "comment": {
+ "shortText": "A RealtimeChannel instance"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "RealtimeRemoveChannelResponse",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "ok"
},
{
- "name": "signal",
- "type": {
- "type": "nameOnly",
- "name": "AbortSignal"
- },
- "isOptional": true
+ "type": "literal",
+ "value": "timed out"
},
{
- "name": "url",
- "type": {
- "type": "nameOnly",
- "name": "URL"
- }
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Unsubscribes and removes a single channel"
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.sendHeartbeat": {
+ "name": "@supabase/realtime-js.RealtimeClient.sendHeartbeat",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Sends a heartbeat message if the socket is connected."
+ }
+ },
+ "@supabase/realtime-js.RealtimeClient.setAuth": {
+ "name": "@supabase/realtime-js.RealtimeClient.setAuth",
+ "params": [
+ {
+ "name": "token",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
}
]
+ },
+ "comment": {
+ "shortText": "A JWT string to override the token set on the client."
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PostgrestTransformBuilder"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "intrinsic",
+ "name": "void"
+ }
}
+ },
+ "comment": {
+ "shortText": "Sets the JWT access token used for channel subscription authorization and Realtime RLS.\\n\\nIf param is null it will use the \`accessToken\` callback function or the token set on the client.\\n\\nOn callback used, it will set the value of the token internal to the client."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.abortSignal": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.abortSignal",
+ "@supabase/realtime-js.RealtimePresence.constructor": {
+ "name": "@supabase/realtime-js.RealtimePresence.constructor",
"params": [
{
- "name": "signal",
+ "name": "channel",
"type": {
"type": "nameOnly",
- "name": "AbortSignal"
+ "name": "RealtimeChannel"
},
"comment": {
- "shortText": "The AbortSignal to use for the fetch request"
+ "shortText": "The RealtimeChannel"
+ }
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "nameOnly",
+ "name": "PresenceOpts"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The options,\\n for example \`{events: {state: 'state', diff: 'diff'}}\`"
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "nameOnly",
+ "name": "RealtimePresence"
}
},
"comment": {
- "shortText": "Set the AbortSignal for the fetch request."
+ "shortText": "Initializes the Presence."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.csv": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.csv",
+ "@supabase/realtime-js.WebSocketFactory.constructor": {
+ "name": "@supabase/realtime-js.WebSocketFactory.constructor",
"params": [],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "WebSocketFactory"
}
- },
- "comment": {
- "shortText": "Return \`data\` as a string in CSV format."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.explain": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.explain",
+ "@supabase/realtime-js.WebSocketFactory.createWebSocket": {
+ "name": "@supabase/realtime-js.WebSocketFactory.createWebSocket",
"params": [
{
- "name": "options",
+ "name": "url",
"type": {
- "type": "object",
- "properties": [
+ "type": "union",
+ "subTypes": [
{
- "name": "analyze",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If \`true\`, the query will be executed and the\\nactual run time will be returned"
- }
+ "type": "intrinsic",
+ "name": "string"
},
{
- "name": "buffers",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If \`true\`, include information on buffer usage"
- }
- },
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "protocols",
+ "type": {
+ "type": "union",
+ "subTypes": [
{
- "name": "format",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "text"
- },
- {
- "type": "literal",
- "value": "json"
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The format of the output, can be \`\\"text\\"\` (default)\\nor \`\\"json\\"\`"
- }
+ "type": "intrinsic",
+ "name": "string"
},
{
- "name": "settings",
- "type": {
+ "type": "array",
+ "elemType": {
"type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If \`true\`, include information on configuration\\nparameters that affect query planning"
+ "name": "string"
}
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "object",
+ "name": "WebSocketLike",
+ "properties": [
+ {
+ "name": "binaryType",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "name": "verbose",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If \`true\`, the query identifier will be returned\\nand \`data\` will include the output columns of the query"
- }
+ "isOptional": true
+ },
+ {
+ "name": "bufferedAmount",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
},
- {
- "name": "wal",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "If \`true\`, include information on WAL record generation"
+ "isOptional": true
+ },
+ {
+ "name": "CLOSED",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "CLOSING",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "CONNECTING",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "dispatchEvent",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "event",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
}
+ },
+ "isOptional": true
+ },
+ {
+ "name": "extensions",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "onclose",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "CloseEvent"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onerror",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onmessage",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "MessageEvent"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "onopen",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "this",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "name": "ev",
+ "type": {
+ "type": "nameOnly",
+ "name": "Event"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ]
}
- ]
- },
- "comment": {
- "shortText": "Named parameters"
- }
+ },
+ {
+ "name": "OPEN",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "protocol",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "readyState",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
}
- ],
+ }
+ },
+ "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor": {
+ "name": "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor",
+ "params": [],
"ret": {
"type": {
- "type": "union",
- "subTypes": [
+ "type": "function",
+ "params": [
{
- "type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "url",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
},
{
+ "name": "protocols",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "WebSocket"
}
- ]
+ }
}
- },
- "comment": {
- "shortText": "Return \`data\` as the EXPLAIN plan for the query.\\n\\nYou need to enable the\\n[db_plan_enabled](https://supabase.com/docs/guides/database/debugging-performance#enabling-explain)\\nsetting before using this method."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.geojson": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.geojson",
+ "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported": {
+ "name": "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported",
"params": [],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PostgrestBuilder"
+ "type": "intrinsic",
+ "name": "boolean"
}
- },
- "comment": {
- "shortText": "Return \`data\` as an object in [GeoJSON](https://geojson.org) format."
}
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.limit": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.limit",
+ }
+ }
+ },
+ {
+ "name": "@supabase/storage-js",
+ "methods": {
+ "@supabase/storage-js.index.StorageApiError.constructor": {
+ "name": "@supabase/storage-js.index.StorageApiError.constructor",
"params": [
{
- "name": "count",
+ "name": "message",
"type": {
"type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The maximum number of rows to return"
+ "name": "string"
}
},
{
- "name": "options",
+ "name": "status",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
- }
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
- }
- }
- ]
- },
- "comment": {
- "shortText": "Named parameters"
+ "type": "intrinsic",
+ "name": "number"
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Limit the query result by \`count\`."
- }
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.maxAffected": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.maxAffected",
- "params": [
+ },
{
- "name": "value",
+ "name": "statusCode",
"type": {
"type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The maximum number of rows that can be affected"
+ "name": "string"
}
}
],
- "comment": {
- "shortText": "Set the maximum number of rows that can be affected by the query.\\nOnly available in PostgREST v13+ and only works with PATCH and DELETE methods."
- }
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.maybeSingle": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.maybeSingle",
- "params": [],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "StorageApiError"
}
- },
- "comment": {
- "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be zero or one row (e.g. using \`.limit(1)\`), otherwise\\nthis returns an error."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.order": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.order",
- "params": [
- {
- "name": "column",
- "type": {
- "type": "nameOnly",
- "name": "ColumnName"
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "ascending",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "nullsFirst",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "undefined"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
+ "@supabase/storage-js.index.StorageApiError.toJSON": {
+ "name": "@supabase/storage-js.index.StorageApiError.toJSON",
+ "params": [],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "altSignatures": [
- {
- "params": [
+ "type": "object",
+ "properties": [
{
- "name": "column",
+ "name": "message",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "options",
+ "name": "name",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "ascending",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "nullsFirst",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "referencedTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- }
- },
- {
- "params": [
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
- "name": "column",
+ "name": "status",
"type": {
- "type": "nameOnly",
- "name": "ColumnName"
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "name": "options",
+ "name": "statusCode",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "ascending",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "undefined"
- },
- "isOptional": true
- },
- {
- "name": "nullsFirst",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- ],
- "ret": {
- "type": {
+ ]
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageClient.constructor": {
+ "name": "@supabase/storage-js.index.StorageClient.constructor",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
- "name": "this"
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
}
- },
- "comment": {
- "shortText": ""
}
},
{
- "params": [
- {
- "name": "column",
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
}
},
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "ascending",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "foreignTable",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "nullsFirst",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
}
},
- "comment": {
- "shortText": ""
- }
+ "isOptional": true
+ },
+ {
+ "name": "opts",
+ "type": {
+ "type": "object",
+ "name": "StorageClientOptions",
+ "properties": [
+ {
+ "name": "useNewHostname",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
}
- ]
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.overrideTypes": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.overrideTypes",
- "params": [],
+ ],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "StorageClient"
}
- },
- "comment": {
- "shortText": "Override the type of the returned \`data\` field in the response."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.range": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.range",
+ "@supabase/storage-js.index.StorageClient.createBucket": {
+ "name": "@supabase/storage-js.index.StorageClient.createBucket",
"params": [
{
- "name": "from",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "comment": {
- "shortText": "The starting index from which to limit the result"
- }
- },
- {
- "name": "to",
+ "name": "id",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
"comment": {
- "shortText": "The last index to which to limit the result"
+ "shortText": "A unique identifier for the bucket you are creating."
}
},
{
@@ -35585,1418 +76948,1352 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "object",
"properties": [
{
- "name": "foreignTable",
+ "name": "allowedMimeTypes",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
},
"isOptional": true,
"comment": {
- "shortText": "Deprecated, use \`options.referencedTable\`\\ninstead"
+ "shortText": "specifies the allowed mime types that this bucket can accept during upload.\\nThe default value is null, which allows files with all mime types to be uploaded.\\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
}
},
{
- "name": "referencedTable",
+ "name": "fileSizeLimit",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "specifies the max file size in bytes that can be uploaded to this bucket.\\nThe global file size limit takes precedence over this value.\\nThe default value is null, which doesn't set a per bucket file size limit."
+ }
+ },
+ {
+ "name": "public",
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "boolean"
+ },
+ "comment": {
+ "shortText": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations. By default, buckets are private."
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "BucketType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "STANDARD"
+ },
+ {
+ "type": "literal",
+ "value": "ANALYTICS"
+ }
+ ]
},
"isOptional": true,
"comment": {
- "shortText": "Set this to limit rows of referenced\\ntables instead of the parent table"
+ "shortText": "(private-beta) specifies the bucket type. see \`BucketType\` for more details.\\n - default bucket type is \`STANDARD\`"
}
}
]
- },
- "comment": {
- "shortText": "Named parameters"
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Limit the query result by starting at an offset \`from\` and ending at the offset \`to\`.\\nOnly records within this range are returned.\\nThis respects the query order and if there is no order clause the range could behave unexpectedly.\\nThe \`from\` and \`to\` values are 0-based and inclusive: \`range(1, 3)\` will include the second, third\\nand fourth rows of the query."
+ "shortText": "Creates a new Storage bucket"
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.returns": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.returns",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PostgrestTransformBuilder"
+ "@supabase/storage-js.index.StorageClient.deleteBucket": {
+ "name": "@supabase/storage-js.index.StorageClient.deleteBucket",
+ "params": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The unique identifier of the bucket you would like to delete."
+ }
}
- },
- "comment": {
- "shortText": "Override the type of the returned \`data\`."
- }
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.rollback": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.rollback",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "this"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Rollback the query.\\n\\n\`data\` will still be returned, but the query is not committed."
+ "shortText": "Deletes an existing bucket. A bucket can't be deleted with existing objects inside it.\\nYou must first \`empty()\` the bucket."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.select": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.select",
+ "@supabase/storage-js.index.StorageClient.emptyBucket": {
+ "name": "@supabase/storage-js.index.StorageClient.emptyBucket",
"params": [
{
- "name": "columns",
+ "name": "id",
"type": {
- "type": "nameOnly",
- "name": "Query"
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "The columns to retrieve, separated by commas"
+ "shortText": "The unique identifier of the bucket you would like to empty."
}
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "PostgrestFilterBuilder"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "properties": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Perform a SELECT on the query result.\\n\\nBy default, \`.insert()\`, \`.update()\`, \`.upsert()\`, and \`.delete()\` do not\\nreturn modified rows. By calling this method, modified rows are returned in\\n\`data\`."
+ "shortText": "Removes all objects inside a single bucket."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.setHeader": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.setHeader",
+ "@supabase/storage-js.index.StorageClient.from": {
+ "name": "@supabase/storage-js.index.StorageClient.from",
"params": [
{
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "value",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "The bucket id to operate on."
}
}
],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Set an HTTP header for the request."
- }
- },
- "@supabase/postgrest-js.PostgrestTransformBuilder.single": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.single",
- "params": [],
"ret": {
"type": {
"type": "nameOnly",
- "name": "PostgrestBuilder"
+ "name": "default"
}
},
"comment": {
- "shortText": "Return \`data\` as a single object instead of an array of objects.\\n\\nQuery result must be one row (e.g. using \`.limit(1)\`), otherwise this\\nreturns an error."
+ "shortText": "Perform file operation in a bucket."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.then": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.then",
+ "@supabase/storage-js.index.StorageClient.getBucket": {
+ "name": "@supabase/storage-js.index.StorageClient.getBucket",
"params": [
{
- "name": "onfulfilled",
+ "name": "id",
"type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The unique identifier of the bucket you would like to retrieve."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
"type": "union",
"subTypes": [
{
- "type": "literal",
- "value": null
- },
- {
- "type": "function",
- "params": [
+ "type": "object",
+ "properties": [
{
- "name": "value",
+ "name": "data",
"type": {
- "type": "union",
- "name": "PostgrestSingleResponse",
- "subTypes": [
+ "type": "object",
+ "name": "Bucket",
+ "properties": [
{
- "type": "object",
- "name": "PostgrestResponseSuccess",
- "properties": [
- {
- "name": "count",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "number"
- }
- ]
- }
- },
- {
- "name": "data",
- "type": {
- "type": "nameOnly",
- "name": "@supabase/postgrest-js.PostgrestResponseSuccess.T"
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusText",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "name": "allowed_mime_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
+ },
+ "isOptional": true
},
{
- "type": "object",
- "name": "PostgrestResponseFailure",
- "properties": [
- {
- "name": "count",
- "type": {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "file_size_limit",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "owner",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "public",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "BucketType",
+ "subTypes": [
+ {
"type": "literal",
- "value": null
- }
- },
- {
- "name": "data",
- "type": {
+ "value": "STANDARD"
+ },
+ {
"type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "PostgrestError"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusText",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "value": "ANALYTICS"
}
- }
- ]
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
]
}
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
}
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult1"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
- }
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is resolved."
- }
- },
- {
- "name": "onrejected",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
+ ]
},
{
- "type": "function",
- "params": [
+ "type": "object",
+ "properties": [
{
- "name": "reason",
+ "name": "data",
"type": {
- "type": "intrinsic",
- "name": "any"
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
}
}
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult2"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
- }
+ ]
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is rejected."
}
}
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
},
"comment": {
- "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ "shortText": "Retrieves the details of an existing Storage bucket."
}
},
- "@supabase/postgrest-js.PostgrestTransformBuilder.throwOnError": {
- "name": "@supabase/postgrest-js.PostgrestTransformBuilder.throwOnError",
- "params": [],
- "comment": {
- "shortText": "If there's an error with the query, throwOnError will reject the promise by\\nthrowing the error instead of returning it as part of a successful response.\\n\\nhttps://github.com/supabase/supabase-js/issues/92"
- }
- }
- }
- },
- {
- "name": "@supabase/realtime-js",
- "methods": {
- "@supabase/realtime-js.RealtimeChannel.constructor": {
- "name": "@supabase/realtime-js.RealtimeChannel.constructor",
+ "@supabase/storage-js.index.StorageClient.listBuckets": {
+ "name": "@supabase/storage-js.index.StorageClient.listBuckets",
"params": [
{
- "name": "topic",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "Topic name can be any string."
- }
- },
- {
- "name": "params",
+ "name": "options",
"type": {
- "name": "RealtimeChannelOptions",
"type": "object",
+ "name": "ListBucketOptions",
"properties": [
{
- "name": "config",
+ "name": "limit",
"type": {
- "type": "object",
- "properties": [
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "offset",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "search",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "sortColumn",
+ "type": {
+ "type": "union",
+ "subTypes": [
{
- "name": "broadcast",
- "type": {
+ "type": "literal",
+ "value": "id"
+ },
+ {
+ "type": "literal",
+ "value": "name"
+ },
+ {
+ "type": "literal",
+ "value": "created_at"
+ },
+ {
+ "type": "literal",
+ "value": "updated_at"
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "sortOrder",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "asc"
+ },
+ {
+ "type": "literal",
+ "value": "desc"
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ]
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "array",
+ "elemType": {
"type": "object",
+ "name": "Bucket",
"properties": [
{
- "name": "ack",
+ "name": "allowed_mime_types",
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
"isOptional": true
},
{
- "name": "replay",
+ "name": "created_at",
"type": {
- "type": "nameOnly",
- "name": "ReplayOption"
- },
- "isOptional": true
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "name": "self",
+ "name": "file_size_limit",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "number"
},
"isOptional": true
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
- }
- },
- {
- "name": "presence",
- "type": {
- "type": "object",
- "properties": [
+ },
{
- "name": "enabled",
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "owner",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "public",
"type": {
"type": "intrinsic",
"name": "boolean"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "BucketType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "STANDARD"
+ },
+ {
+ "type": "literal",
+ "value": "ANALYTICS"
+ }
+ ]
},
"isOptional": true
},
{
- "name": "key",
+ "name": "updated_at",
"type": {
"type": "intrinsic",
"name": "string"
- },
- "isOptional": true
+ }
}
]
- },
- "isOptional": true,
- "comment": {
- "shortText": "key option is used to track presence payload across clients"
- }
- },
- {
- "name": "private",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
}
}
- ]
- }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
}
]
}
- },
- {
- "name": "socket",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeClient"
- }
}
- ],
+ },
+ "comment": {
+ "shortText": "Retrieves the details of all Storage buckets within an existing project."
+ }
+ },
+ "@supabase/storage-js.index.StorageClient.throwOnError": {
+ "name": "@supabase/storage-js.index.StorageClient.throwOnError",
+ "params": [],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
+ "type": "intrinsic",
+ "name": "this"
}
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them."
}
},
- "@supabase/realtime-js.RealtimeChannel.on": {
- "name": "@supabase/realtime-js.RealtimeChannel.on",
+ "@supabase/storage-js.index.StorageClient.updateBucket": {
+ "name": "@supabase/storage-js.index.StorageClient.updateBucket",
"params": [
{
- "name": "type",
+ "name": "id",
"type": {
- "type": "literal",
- "value": "presence"
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A unique identifier for the bucket you are updating."
}
},
{
- "name": "filter",
+ "name": "options",
"type": {
"type": "object",
"properties": [
{
- "name": "event",
+ "name": "allowedMimeTypes",
"type": {
- "type": "literal",
- "value": "sync"
- }
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
- },
- "altSignatures": [
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "presence"
- }
- },
- {
- "name": "filter",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "event",
- "type": {
+ "type": "union",
+ "subTypes": [
+ {
"type": "literal",
- "value": "join"
+ "value": null
+ },
+ {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
- "type": {
- "name": "RealtimePresenceJoinPayload",
- "type": "object",
- "properties": [
- {
- "name": "currentPresences",
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Presence"
- }
- }
- },
- {
- "name": "event"
- },
- {
- "name": "key",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "newPresences",
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Presence"
- }
- }
- }
- ]
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "specifies the allowed mime types that this bucket can accept during upload.\\nThe default value is null, which allows files with all mime types to be uploaded.\\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
+ }
+ },
+ {
+ "name": "fileSizeLimit",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "specifies the max file size in bytes that can be uploaded to this bucket.\\nThe global file size limit takes precedence over this value.\\nThe default value is null, which doesn't set a per bucket file size limit."
+ }
+ },
+ {
+ "name": "public",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "comment": {
+ "shortText": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations."
}
}
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
+ ]
}
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "presence"
- }
- },
- {
- "name": "filter",
- "type": {
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
"type": "object",
"properties": [
{
- "name": "event",
- "type": {
- "type": "literal",
- "value": "leave"
- }
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
+ "name": "data",
"type": {
- "name": "RealtimePresenceLeavePayload",
"type": "object",
"properties": [
{
- "name": "currentPresences",
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Presence"
- }
- }
- },
- {
- "name": "event"
- },
- {
- "name": "key",
+ "name": "message",
"type": {
"type": "intrinsic",
"name": "string"
}
- },
- {
- "name": "leftPresences",
- "type": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Presence"
- }
- }
}
]
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
- }
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "postgres_changes"
- }
- },
- {
- "name": "filter",
- "type": {
- "name": "RealtimePostgresChangesFilter",
- "type": "object",
- "properties": [
- {
- "name": "event",
- "type": {
- "type": "literal",
- "value": "*",
- "name": "T"
- },
- "comment": {
- "shortText": "The type of database change to listen to."
- }
},
{
- "name": "filter",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Receive database changes when filter is matched."
+ "type": "literal",
+ "value": null
}
- },
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
{
- "name": "schema",
+ "name": "data",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The database schema to listen to."
+ "type": "literal",
+ "value": null
}
},
{
- "name": "table",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "The database table to listen to."
+ "type": "nameOnly",
+ "name": "StorageError"
}
}
]
}
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
- "type": {
- "type": "union",
- "name": "RealtimePostgresChangesPayload",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "RealtimePostgresInsertPayload"
- },
- {
- "type": "nameOnly",
- "name": "RealtimePostgresUpdatePayload"
- },
- {
- "type": "nameOnly",
- "name": "RealtimePostgresDeletePayload"
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Updates a Storage bucket"
+ }
+ },
+ "@supabase/storage-js.index.StorageError.constructor": {
+ "name": "@supabase/storage-js.index.StorageError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageUnknownError.constructor": {
+ "name": "@supabase/storage-js.index.StorageUnknownError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "params": [
+ "name": "originalError",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageUnknownError"
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsApiError.constructor": {
+ "name": "@supabase/storage-js.index.StorageVectorsApiError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "status",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusCode",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsApiError"
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsApiError.toJSON": {
+ "name": "@supabase/storage-js.index.StorageVectorsApiError.toJSON",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "object",
+ "properties": [
{
- "name": "type",
+ "name": "message",
"type": {
- "type": "literal",
- "value": "postgres_changes"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "filter",
+ "name": "name",
"type": {
- "name": "RealtimePostgresChangesFilter",
- "type": "object",
- "properties": [
- {
- "name": "event",
- "type": {
- "type": "literal",
- "value": "INSERT",
- "name": "T"
- },
- "comment": {
- "shortText": "The type of database change to listen to."
- }
- },
- {
- "name": "filter",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "Receive database changes when filter is matched."
- }
- },
- {
- "name": "schema",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The database schema to listen to."
- }
- },
- {
- "name": "table",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true,
- "comment": {
- "shortText": "The database table to listen to."
- }
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "name": "callback",
+ "name": "status",
"type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "name": "statusCode",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsClient.constructor": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.constructor",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "name": "StorageVectorsClientOptions",
+ "properties": [
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimePostgresInsertPayload"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
}
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
}
- ],
- "ret": {
- "type": {
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Custom fetch implementation (optional)\\nUseful for testing or custom request handling"
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
"type": "intrinsic",
- "name": "void"
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
}
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Custom headers to include in all requests"
}
}
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsClient"
+ }
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsClient.createBucket": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.createBucket",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
"comment": {
- "shortText": "Creates an event handler that listens to changes."
+ "shortText": "Unique name for the vector bucket"
}
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "postgres_changes"
- }
- },
- {
- "name": "filter",
- "type": {
- "name": "RealtimePostgresChangesFilter",
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
- "name": "event",
+ "name": "data",
"type": {
- "type": "literal",
- "value": "UPDATE",
- "name": "T"
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
},
"comment": {
- "shortText": "The type of database change to listen to."
+ "shortText": "Response data of type T"
}
},
{
- "name": "filter",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": null
},
- "isOptional": true,
"comment": {
- "shortText": "Receive database changes when filter is matched."
+ "shortText": "Null on success"
}
- },
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
{
- "name": "schema",
+ "name": "data",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": null
},
"comment": {
- "shortText": "The database schema to listen to."
+ "shortText": "Null on error"
}
},
{
- "name": "table",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
},
- "isOptional": true,
"comment": {
- "shortText": "The database table to listen to."
+ "shortText": "StorageVectorsError with details"
}
}
]
}
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
- "type": {
- "type": "nameOnly",
- "name": "RealtimePostgresUpdatePayload"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data"
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsClient.deleteBucket": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.deleteBucket",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
"comment": {
- "shortText": "Creates an event handler that listens to changes."
+ "shortText": "Name of the vector bucket to delete"
}
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "postgres_changes"
- }
- },
- {
- "name": "filter",
- "type": {
- "name": "RealtimePostgresChangesFilter",
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
- "name": "event",
+ "name": "data",
"type": {
- "type": "literal",
- "value": "DELETE",
- "name": "T"
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
},
"comment": {
- "shortText": "The type of database change to listen to."
+ "shortText": "Response data of type T"
}
},
{
- "name": "filter",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": null
},
- "isOptional": true,
"comment": {
- "shortText": "Receive database changes when filter is matched."
+ "shortText": "Null on success"
}
- },
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
{
- "name": "schema",
+ "name": "data",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": null
},
"comment": {
- "shortText": "The database schema to listen to."
+ "shortText": "Null on error"
}
},
{
- "name": "table",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
},
- "isOptional": true,
"comment": {
- "shortText": "The database table to listen to."
+ "shortText": "StorageVectorsError with details"
}
}
]
}
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
- "type": {
- "type": "nameOnly",
- "name": "RealtimePostgresDeletePayload"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)"
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsClient.from": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.from",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
"comment": {
- "shortText": "Creates an event handler that listens to changes."
+ "shortText": "Name of the vector bucket"
}
- },
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "VectorBucketScope"
+ }
+ },
+ "comment": {
+ "shortText": "Access operations for a specific vector bucket\\nReturns a scoped client for index and vector operations within the bucket"
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsClient.getBucket": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.getBucket",
+ "params": [
{
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "broadcast"
- },
- "comment": {
- "shortText": "One of \\"broadcast\\", \\"presence\\", or \\"postgres_changes\\"."
- }
- },
- {
- "name": "filter",
- "type": {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket to retrieve"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
- "name": "event",
+ "name": "data",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
- }
- ]
- },
- "comment": {
- "shortText": "Custom object specific to the Realtime feature detailing which payloads to receive."
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
+ },
{
- "name": "payload",
+ "name": "error",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "event",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "meta",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "replayed",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "broadcast"
- }
- }
- ]
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
+ ]
},
- "comment": {
- "shortText": "Function to be invoked when event handler is triggered."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
- }
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "broadcast"
- }
- },
- {
- "name": "filter",
- "type": {
+ {
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
- "name": "event",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "payload",
+ "name": "data",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "event",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "meta",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "replayed",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "payload",
- "type": {
- "type": "nameOnly",
- "name": "T"
- }
- },
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "broadcast"
- }
- }
- ]
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
- }
- },
- {
- "params": [
- {
- "name": "type",
- "type": {
- "type": "literal",
- "value": "system"
- }
- },
- {
- "name": "filter"
- },
- {
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
+ },
{
- "name": "payload",
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "any"
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
+ ]
}
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- }
- },
- "comment": {
- "shortText": "Creates an event handler that listens to changes."
- }
- }
- ]
- },
- "@supabase/realtime-js.RealtimeChannel.presenceState": {
- "name": "@supabase/realtime-js.RealtimeChannel.presenceState",
- "params": [],
- "ret": {
- "type": {
- "name": "RealtimePresenceState",
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "array",
- "elemType": {
- "type": "nameOnly",
- "name": "Presence"
- }
+ ]
}
}
+ },
+ "comment": {
+ "shortText": "Retrieves metadata for a specific vector bucket\\nReturns bucket configuration including encryption settings and creation time"
}
},
- "@supabase/realtime-js.RealtimeChannel.send": {
- "name": "@supabase/realtime-js.RealtimeChannel.send",
+ "@supabase/storage-js.index.StorageVectorsClient.listBuckets": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.listBuckets",
"params": [
{
- "name": "args",
+ "name": "options",
"type": {
"type": "object",
+ "name": "ListVectorBucketsOptions",
"properties": [
{
- "name": "event",
+ "name": "maxResults",
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
},
+ "isOptional": true,
"comment": {
- "shortText": "The name of the event being sent"
+ "shortText": "Maximum number of results to return (default: 100)"
}
},
{
- "name": "payload",
+ "name": "nextToken",
"type": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
},
"isOptional": true,
"comment": {
- "shortText": "Payload to be sent"
+ "shortText": "Token for pagination from previous response"
}
},
- {
- "name": "type",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": "presence"
- },
- {
- "type": "literal",
- "value": "broadcast"
- },
- {
- "type": "literal",
- "value": "postgres_changes"
- }
- ]
- },
- "comment": {
- "shortText": "The type of event to send"
- }
- }
- ]
- },
- "comment": {
- "shortText": "Arguments to send to channel"
- }
- },
- {
- "name": "opts",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
+ {
+ "name": "prefix",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Filter buckets by name prefix"
+ }
+ }
+ ]
},
"comment": {
- "shortText": "Options to be used during the send process"
+ "shortText": "Listing options"
}
}
],
@@ -37006,97 +78303,139 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "RealtimeChannelSendResponse",
+ "name": "ApiResponse",
"subTypes": [
{
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
},
{
- "type": "literal",
- "value": "error"
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
}
]
}
}
},
"comment": {
- "shortText": "Sends a message into the channel."
+ "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results"
}
},
- "@supabase/realtime-js.RealtimeChannel.subscribe": {
- "name": "@supabase/realtime-js.RealtimeChannel.subscribe",
+ "@supabase/storage-js.index.StorageVectorsClient.throwOnError": {
+ "name": "@supabase/storage-js.index.StorageVectorsClient.throwOnError",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ },
+ "@supabase/storage-js.index.StorageVectorsError.constructor": {
+ "name": "@supabase/storage-js.index.StorageVectorsError.constructor",
"params": [
{
- "name": "callback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "status",
- "type": {
- "type": "nameOnly",
- "name": "REALTIME_SUBSCRIBE_STATES"
- }
- },
- {
- "name": "err",
- "type": {
- "type": "nameOnly",
- "name": "Error"
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "isOptional": true
- },
- {
- "name": "timeout",
+ "name": "message",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
}
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "RealtimeChannel"
+ "name": "StorageVectorsError"
}
- },
- "comment": {
- "shortText": "Subscribe registers your client with the server"
}
},
- "@supabase/realtime-js.RealtimeChannel.teardown": {
- "name": "@supabase/realtime-js.RealtimeChannel.teardown",
- "params": [],
+ "@supabase/storage-js.index.StorageVectorsUnknownError.constructor": {
+ "name": "@supabase/storage-js.index.StorageVectorsUnknownError.constructor",
+ "params": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "originalError",
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "nameOnly",
+ "name": "StorageVectorsUnknownError"
}
- },
- "comment": {
- "shortText": "Teardown the channel.\\n\\nDestroys and stops related timers."
}
},
- "@supabase/realtime-js.RealtimeChannel.track": {
- "name": "@supabase/realtime-js.RealtimeChannel.track",
+ "@supabase/storage-js.index.VectorBucketApi.constructor": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.constructor",
"params": [
{
- "name": "payload",
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The base URL for the storage vectors API"
+ }
+ },
+ {
+ "name": "headers",
"type": {
"type": "index signature",
"keyType": {
@@ -37105,58 +78444,84 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
"valueType": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
}
+ },
+ "comment": {
+ "shortText": "HTTP headers to include in requests"
}
},
{
- "name": "opts",
+ "name": "fetch",
"type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
},
- "valueType": {
- "type": "intrinsic",
- "name": "any"
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
}
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional custom fetch implementation"
}
}
],
"ret": {
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "name": "RealtimeChannelSendResponse",
- "subTypes": [
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- },
- {
- "type": "literal",
- "value": "error"
- }
- ]
- }
+ "type": "nameOnly",
+ "name": "VectorBucketApi"
}
+ },
+ "comment": {
+ "shortText": "Creates a new VectorBucketApi instance"
}
},
- "@supabase/realtime-js.RealtimeChannel.unsubscribe": {
- "name": "@supabase/realtime-js.RealtimeChannel.unsubscribe",
+ "@supabase/storage-js.index.VectorBucketApi.createBucket": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.createBucket",
"params": [
{
- "name": "timeout",
+ "name": "vectorBucketName",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique name for the vector bucket"
}
}
],
@@ -37166,42 +78531,79 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
},
{
- "type": "literal",
- "value": "timed out"
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
}
]
}
}
},
"comment": {
- "shortText": "Leaves the channel.\\n\\nUnsubscribes from server events, and instructs channel to terminate on server.\\nTriggers onClose() hooks.\\n\\nTo receive leave acknowledgements, use the a \`receive\` hook to bind to the server ack, ie:\\nchannel.unsubscribe().receive(\\"ok\\", () => alert(\\"left!\\") )"
+ "shortText": "Creates a new vector bucket\\nVector buckets are containers for vector indexes and their data"
}
},
- "@supabase/realtime-js.RealtimeChannel.untrack": {
- "name": "@supabase/realtime-js.RealtimeChannel.untrack",
+ "@supabase/storage-js.index.VectorBucketApi.deleteBucket": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.deleteBucket",
"params": [
{
- "name": "opts",
+ "name": "vectorBucketName",
"type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket to delete"
}
}
],
@@ -37211,685 +78613,854 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "RealtimeChannelSendResponse",
+ "name": "ApiResponse",
"subTypes": [
{
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- },
- {
- "type": "literal",
- "value": "error"
- }
- ]
- }
- }
- }
- },
- "@supabase/realtime-js.RealtimeChannel.updateJoinPayload": {
- "name": "@supabase/realtime-js.RealtimeChannel.updateJoinPayload",
- "params": [
- {
- "name": "payload",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
- },
- "valueType": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "@supabase/realtime-js.RealtimeClient.constructor": {
- "name": "@supabase/realtime-js.RealtimeClient.constructor",
- "params": [
- {
- "name": "endPoint",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The string WebSocket endpoint, ie, \\"ws://example.com/socket\\", \\"wss://example.com\\", \\"/socket\\" (inherited host & protocol)"
- }
- },
- {
- "name": "options",
- "type": {
- "name": "RealtimeClientOptions",
- "type": "object",
- "properties": [
- {
- "name": "accessToken",
- "type": {
- "type": "function",
- "params": [],
- "ret": {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
"type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "literal",
- "value": null
- }
- ]
- }
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
- }
- },
- "isOptional": true
- },
- {
- "name": "decode",
- "type": {
- "type": "nameOnly",
- "name": "Function"
- },
- "isOptional": true
- },
- {
- "name": "encode",
- "type": {
- "type": "nameOnly",
- "name": "Function"
- },
- "isOptional": true
- },
- {
- "name": "fetch",
- "type": {
- "type": "nameOnly",
- "name": "Fetch"
- },
- "isOptional": true
- },
- {
- "name": "headers",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
},
- "valueType": {
- "type": "intrinsic",
- "name": "string"
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
}
- },
- "isOptional": true
+ ]
},
{
- "name": "heartbeatCallback",
- "type": {
- "type": "function",
- "params": [
- {
- "name": "status",
- "type": {
- "type": "nameOnly",
- "name": "HeartbeatStatus"
- }
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
- ],
- "ret": {
+ },
+ {
+ "name": "error",
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
- },
- "isOptional": true
- },
- {
- "name": "heartbeatIntervalMs",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "log_level",
- "type": {
- "type": "nameOnly",
- "name": "LogLevel"
- },
- "isOptional": true
- },
- {
- "name": "logger",
- "type": {
- "type": "nameOnly",
- "name": "Function"
- },
- "isOptional": true
- },
- {
- "name": "logLevel",
- "type": {
- "type": "nameOnly",
- "name": "LogLevel"
- },
- "isOptional": true
- },
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes a vector bucket\\nBucket must be empty before deletion (all indexes must be removed first)"
+ }
+ },
+ "@supabase/storage-js.index.VectorBucketApi.getBucket": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.getBucket",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket to retrieve"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
{
- "name": "params",
- "type": {
- "type": "index signature",
- "keyType": {
- "type": "intrinsic",
- "name": "string"
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
},
- "valueType": {
- "type": "intrinsic",
- "name": "any"
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
}
- },
- "isOptional": true
+ ]
},
{
- "name": "reconnectAfterMs",
- "type": {
- "type": "nameOnly",
- "name": "Function"
- },
- "isOptional": true
- },
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves metadata for a specific vector bucket\\nReturns bucket configuration including encryption settings and creation time"
+ }
+ },
+ "@supabase/storage-js.index.VectorBucketApi.listBuckets": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.listBuckets",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "name": "ListVectorBucketsOptions",
+ "properties": [
{
- "name": "timeout",
+ "name": "maxResults",
"type": {
"type": "intrinsic",
"name": "number"
},
- "isOptional": true
- },
- {
- "name": "transport",
- "type": {
- "type": "object",
- "name": "WebSocketLikeConstructor",
- "properties": []
- },
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Maximum number of results to return (default: 100)"
+ }
},
{
- "name": "worker",
+ "name": "nextToken",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Token for pagination from previous response"
+ }
},
{
- "name": "workerUrl",
+ "name": "prefix",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
+ "isOptional": true,
+ "comment": {
+ "shortText": "Filter buckets by name prefix"
+ }
}
]
},
- "isOptional": true
+ "comment": {
+ "shortText": "Listing options"
+ }
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "RealtimeClient"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Initializes the Socket."
+ "shortText": "Lists vector buckets with optional filtering and pagination\\nSupports prefix-based filtering and paginated results"
}
},
- "@supabase/realtime-js.RealtimeClient.channel": {
- "name": "@supabase/realtime-js.RealtimeClient.channel",
+ "@supabase/storage-js.index.VectorBucketApi.throwOnError": {
+ "name": "@supabase/storage-js.index.VectorBucketApi.throwOnError",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ },
+ "@supabase/storage-js.index.VectorBucketScope.constructor": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.constructor",
"params": [
{
- "name": "topic",
+ "name": "url",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "params",
+ "name": "headers",
"type": {
- "name": "RealtimeChannelOptions",
- "type": "object",
- "properties": [
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
{
- "name": "config",
+ "name": "input",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "broadcast",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "ack",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "replay",
- "type": {
- "type": "nameOnly",
- "name": "ReplayOption"
- },
- "isOptional": true
- },
- {
- "name": "self",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "self option enables client to receive message it broadcast\\nack option instructs server to acknowledge that broadcast message was received\\nreplay option instructs server to replay broadcast messages"
- }
- },
+ "type": "union",
+ "subTypes": [
{
- "name": "presence",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "enabled",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true
- },
- {
- "name": "key",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "key option is used to track presence payload across clients"
- }
+ "type": "nameOnly",
+ "name": "RequestInfo"
},
{
- "name": "private",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "isOptional": true,
- "comment": {
- "shortText": "defines if the channel is private or not and if RLS policies will be used to check data"
- }
+ "type": "nameOnly",
+ "name": "URL"
}
]
}
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
}
- ]
- }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
"type": "nameOnly",
- "name": "RealtimeChannel"
+ "name": "VectorBucketScope"
}
}
},
- "@supabase/realtime-js.RealtimeClient.connect": {
- "name": "@supabase/realtime-js.RealtimeClient.connect",
- "params": [],
+ "@supabase/storage-js.index.VectorBucketScope.createIndex": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.createIndex",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "nameOnly",
+ "name": "Omit"
+ },
+ "comment": {
+ "shortText": "Index configuration (vectorBucketName is automatically set)"
+ }
+ }
+ ],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Connects the socket, unless already connected."
+ "shortText": "Creates a new vector index in this bucket\\nConvenience method that automatically includes the bucket name"
}
},
- "@supabase/realtime-js.RealtimeClient.connectionState": {
- "name": "@supabase/realtime-js.RealtimeClient.connectionState",
- "params": [],
+ "@supabase/storage-js.index.VectorBucketScope.deleteIndex": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.deleteIndex",
+ "params": [
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index to delete"
+ }
+ }
+ ],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "CONNECTION_STATE"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Returns the current state of the socket."
+ "shortText": "Deletes an index from this bucket\\nConvenience method that automatically includes the bucket name"
}
},
- "@supabase/realtime-js.RealtimeClient.disconnect": {
- "name": "@supabase/realtime-js.RealtimeClient.disconnect",
+ "@supabase/storage-js.index.VectorBucketScope.getIndex": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.getIndex",
"params": [
{
- "name": "code",
+ "name": "indexName",
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "A numeric status code to send on disconnect."
+ "shortText": "Name of the index to retrieve"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
}
- },
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves metadata for a specific index in this bucket\\nConvenience method that automatically includes the bucket name"
+ }
+ },
+ "@supabase/storage-js.index.VectorBucketScope.index": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.index",
+ "params": [
{
- "name": "reason",
+ "name": "indexName",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "A custom reason for the disconnect."
+ "shortText": "Name of the index"
}
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
- }
- },
- "comment": {
- "shortText": "Disconnects the socket."
- }
- },
- "@supabase/realtime-js.RealtimeClient.endpointURL": {
- "name": "@supabase/realtime-js.RealtimeClient.endpointURL",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "comment": {
- "shortText": "Returns the URL of the websocket."
- }
- },
- "@supabase/realtime-js.RealtimeClient.flushSendBuffer": {
- "name": "@supabase/realtime-js.RealtimeClient.flushSendBuffer",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "nameOnly",
+ "name": "VectorIndexScope"
}
},
"comment": {
- "shortText": "Flushes send buffer"
+ "shortText": "Access operations for a specific index within this bucket\\nReturns a scoped client for vector data operations"
}
},
- "@supabase/realtime-js.RealtimeClient.getChannels": {
- "name": "@supabase/realtime-js.RealtimeClient.getChannels",
- "params": [],
- "ret": {
- "type": {
- "type": "array",
- "elemType": {
+ "@supabase/storage-js.index.VectorBucketScope.listIndexes": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.listIndexes",
+ "params": [
+ {
+ "name": "options",
+ "type": {
"type": "nameOnly",
- "name": "RealtimeChannel"
+ "name": "Omit"
+ },
+ "comment": {
+ "shortText": "Listing options (vectorBucketName is automatically set)"
}
}
- },
- "comment": {
- "shortText": "Returns all created channels"
- }
- },
- "@supabase/realtime-js.RealtimeClient.isConnected": {
- "name": "@supabase/realtime-js.RealtimeClient.isConnected",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- "comment": {
- "shortText": "Returns \`true\` is the connection is open."
- }
- },
- "@supabase/realtime-js.RealtimeClient.isConnecting": {
- "name": "@supabase/realtime-js.RealtimeClient.isConnecting",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Returns \`true\` if the connection is currently connecting."
+ "shortText": "Lists indexes in this bucket\\nConvenience method that automatically includes the bucket name"
}
},
- "@supabase/realtime-js.RealtimeClient.isDisconnecting": {
- "name": "@supabase/realtime-js.RealtimeClient.isDisconnecting",
+ "@supabase/storage-js.index.VectorBucketScope.throwOnError": {
+ "name": "@supabase/storage-js.index.VectorBucketScope.throwOnError",
"params": [],
"ret": {
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "this"
}
},
"comment": {
- "shortText": "Returns \`true\` if the connection is currently disconnecting."
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
}
},
- "@supabase/realtime-js.RealtimeClient.log": {
- "name": "@supabase/realtime-js.RealtimeClient.log",
+ "@supabase/storage-js.index.VectorDataApi.constructor": {
+ "name": "@supabase/storage-js.index.VectorDataApi.constructor",
"params": [
{
- "name": "kind",
+ "name": "url",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "msg",
+ "name": "headers",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
},
{
- "name": "data",
- "type": {
- "type": "intrinsic",
- "name": "any"
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- },
- "comment": {
- "shortText": "Logs the message.\\n\\nFor customized logging, \`this.logger\` can be overridden."
- }
- },
- "@supabase/realtime-js.RealtimeClient.onHeartbeat": {
- "name": "@supabase/realtime-js.RealtimeClient.onHeartbeat",
- "params": [
- {
- "name": "callback",
+ "name": "fetch",
"type": {
"type": "function",
"params": [
{
- "name": "status",
+ "name": "input",
"type": {
- "type": "nameOnly",
- "name": "HeartbeatStatus"
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
}
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
}
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
}
- }
+ },
+ "isOptional": true
}
],
"ret": {
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "nameOnly",
+ "name": "VectorDataApi"
}
}
},
- "@supabase/realtime-js.RealtimeClient.push": {
- "name": "@supabase/realtime-js.RealtimeClient.push",
+ "@supabase/storage-js.index.VectorDataApi.deleteVectors": {
+ "name": "@supabase/storage-js.index.VectorDataApi.deleteVectors",
"params": [
{
- "name": "data",
+ "name": "options",
"type": {
- "name": "RealtimeMessage",
"type": "object",
+ "name": "DeleteVectorsOptions",
"properties": [
{
- "name": "event",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "join_ref",
+ "name": "indexName",
"type": {
"type": "intrinsic",
"name": "string"
},
- "isOptional": true
- },
- {
- "name": "payload",
- "type": {
- "type": "intrinsic",
- "name": "any"
+ "comment": {
+ "shortText": "Name of the index"
}
},
{
- "name": "ref",
+ "name": "keys",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of vector keys to delete (1-500 items)"
}
},
{
- "name": "topic",
+ "name": "vectorBucketName",
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket"
}
}
]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- },
- "comment": {
- "shortText": "Push out a message if the socket is connected.\\n\\nIf the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established."
- }
- },
- "@supabase/realtime-js.RealtimeClient.removeAllChannels": {
- "name": "@supabase/realtime-js.RealtimeClient.removeAllChannels",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "array",
- "elemType": {
- "type": "union",
- "name": "RealtimeRemoveChannelResponse",
- "subTypes": [
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- },
- {
- "type": "literal",
- "value": "error"
- }
- ]
- }
- }
- }
- },
- "comment": {
- "shortText": "Unsubscribes and removes all channels"
- }
- },
- "@supabase/realtime-js.RealtimeClient.removeChannel": {
- "name": "@supabase/realtime-js.RealtimeClient.removeChannel",
- "params": [
- {
- "name": "channel",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
},
"comment": {
- "shortText": "A RealtimeChannel instance"
+ "shortText": "Vector deletion options"
}
}
],
@@ -37899,65 +79470,136 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "RealtimeRemoveChannelResponse",
+ "name": "ApiResponse",
"subTypes": [
{
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
},
{
- "type": "literal",
- "value": "error"
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
}
]
}
}
},
"comment": {
- "shortText": "Unsubscribes and removes a single channel"
- }
- },
- "@supabase/realtime-js.RealtimeClient.sendHeartbeat": {
- "name": "@supabase/realtime-js.RealtimeClient.sendHeartbeat",
- "params": [],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "comment": {
- "shortText": "Sends a heartbeat message if the socket is connected."
+ "shortText": "Deletes vectors by their keys in batch\\nAccepts 1-500 keys per request"
}
},
- "@supabase/realtime-js.RealtimeClient.setAuth": {
- "name": "@supabase/realtime-js.RealtimeClient.setAuth",
+ "@supabase/storage-js.index.VectorDataApi.getVectors": {
+ "name": "@supabase/storage-js.index.VectorDataApi.getVectors",
"params": [
{
- "name": "token",
+ "name": "options",
"type": {
- "type": "union",
- "subTypes": [
+ "type": "object",
+ "name": "GetVectorsOptions",
+ "properties": [
{
- "type": "literal",
- "value": null
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index"
+ }
},
{
- "type": "intrinsic",
- "name": "string"
+ "name": "keys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "Array of vector keys to retrieve"
+ }
+ },
+ {
+ "name": "returnData",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include vector data in response"
+ }
+ },
+ {
+ "name": "returnMetadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include metadata in response"
+ }
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket"
+ }
}
]
},
"comment": {
- "shortText": "A JWT string to override the token set on the client."
+ "shortText": "Vector retrieval options"
}
}
],
@@ -37966,493 +79608,608 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "promise",
"name": "Promise",
"awaited": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- },
- "comment": {
- "shortText": "Sets the JWT access token used for channel subscription authorization and Realtime RLS.\\n\\nIf param is null it will use the \`accessToken\` callback function or the token set on the client.\\n\\nOn callback used, it will set the value of the token internal to the client."
- }
- },
- "@supabase/realtime-js.RealtimePresence.constructor": {
- "name": "@supabase/realtime-js.RealtimePresence.constructor",
- "params": [
- {
- "name": "channel",
- "type": {
- "type": "nameOnly",
- "name": "RealtimeChannel"
- },
- "comment": {
- "shortText": "The RealtimeChannel"
- }
- },
- {
- "name": "opts",
- "type": {
- "type": "nameOnly",
- "name": "PresenceOpts"
- },
- "isOptional": true,
- "comment": {
- "shortText": "The options,\\n for example \`{events: {state: 'state', diff: 'diff'}}\`"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "RealtimePresence"
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
},
"comment": {
- "shortText": "Initializes the Presence."
- }
- },
- "@supabase/realtime-js.WebSocketFactory.constructor": {
- "name": "@supabase/realtime-js.WebSocketFactory.constructor",
- "params": [],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "WebSocketFactory"
- }
+ "shortText": "Retrieves vectors by their keys in batch\\nOptionally includes vector data and/or metadata in response\\nAdditional permissions required when returning data or metadata"
}
},
- "@supabase/realtime-js.WebSocketFactory.createWebSocket": {
- "name": "@supabase/realtime-js.WebSocketFactory.createWebSocket",
+ "@supabase/storage-js.index.VectorDataApi.listVectors": {
+ "name": "@supabase/storage-js.index.VectorDataApi.listVectors",
"params": [
{
- "name": "url",
+ "name": "options",
"type": {
- "type": "union",
- "subTypes": [
+ "type": "object",
+ "name": "ListVectorsOptions",
+ "properties": [
{
- "type": "intrinsic",
- "name": "string"
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index"
+ }
},
{
- "type": "nameOnly",
- "name": "URL"
- }
- ]
- }
- },
- {
- "name": "protocols",
- "type": {
- "type": "union",
- "subTypes": [
+ "name": "maxResults",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Maximum number of results to return (default: 500, max: 1000)"
+ }
+ },
{
- "type": "intrinsic",
- "name": "string"
+ "name": "nextToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Token for pagination from previous response"
+ }
},
{
- "type": "array",
- "elemType": {
+ "name": "returnData",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include vector data in response"
+ }
+ },
+ {
+ "name": "returnMetadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include metadata in response"
+ }
+ },
+ {
+ "name": "segmentCount",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Total number of parallel segments (1-16)"
+ }
+ },
+ {
+ "name": "segmentIndex",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Zero-based index of this segment (0 to segmentCount-1)"
+ }
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket"
}
}
]
},
- "isOptional": true
+ "comment": {
+ "shortText": "Vector listing options"
+ }
}
],
"ret": {
"type": {
- "type": "object",
- "name": "WebSocketLike",
- "properties": [
- {
- "name": "binaryType",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "isOptional": true
- },
- {
- "name": "bufferedAmount",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "CLOSED",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "CLOSING",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "CONNECTING",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "dispatchEvent",
- "type": {
- "type": "function",
- "params": [
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
{
- "name": "event",
+ "name": "data",
"type": {
"type": "nameOnly",
- "name": "Event"
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- },
- "isOptional": true
- },
- {
- "name": "extensions",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ]
},
- "isOptional": true
- },
- {
- "name": "onclose",
- "type": {
- "type": "union",
- "subTypes": [
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
{
- "type": "literal",
- "value": null
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
},
{
- "type": "function",
- "params": [
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Lists/scans vectors in an index with pagination\\nSupports parallel scanning via segment configuration for high-throughput scenarios\\nAdditional permissions required when returning data or metadata"
+ }
+ },
+ "@supabase/storage-js.index.VectorDataApi.putVectors": {
+ "name": "@supabase/storage-js.index.VectorDataApi.putVectors",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "name": "PutVectorsOptions",
+ "properties": [
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index"
+ }
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket"
+ }
+ },
+ {
+ "name": "vectors",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "VectorObject",
+ "properties": [
{
- "name": "this",
+ "name": "data",
+ "type": {
+ "type": "object",
+ "name": "VectorData",
+ "properties": [
+ {
+ "name": "float32",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ "comment": {
+ "shortText": "Array of 32-bit floating point numbers"
+ }
+ }
+ ]
+ },
+ "comment": {
+ "shortText": "Vector embedding data"
+ }
+ },
+ {
+ "name": "key",
"type": {
"type": "intrinsic",
- "name": "any"
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the vector"
}
},
{
- "name": "ev",
+ "name": "metadata",
"type": {
- "type": "nameOnly",
- "name": "CloseEvent"
+ "type": "record",
+ "name": "VectorMetadata",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional arbitrary metadata"
}
}
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- }
+ ]
}
- ]
+ },
+ "comment": {
+ "shortText": "Array of vectors to insert/upsert (1-500 items)"
+ }
}
- },
- {
- "name": "onerror",
- "type": {
- "type": "union",
- "subTypes": [
+ ]
+ },
+ "comment": {
+ "shortText": "Vector insertion options"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
{
- "type": "literal",
- "value": null
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
},
{
- "type": "function",
- "params": [
- {
- "name": "this",
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- {
- "name": "ev",
- "type": {
- "type": "nameOnly",
- "name": "Event"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
- }
- },
- {
- "name": "onmessage",
- "type": {
- "type": "union",
- "subTypes": [
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
{
- "type": "literal",
- "value": null
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
},
{
- "type": "function",
- "params": [
- {
- "name": "this",
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- {
- "name": "ev",
- "type": {
- "type": "nameOnly",
- "name": "MessageEvent"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
}
- },
- {
- "name": "onopen",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Inserts or updates vectors in batch (upsert operation)\\nAccepts 1-500 vectors per request. Larger batches should be split"
+ }
+ },
+ "@supabase/storage-js.index.VectorDataApi.queryVectors": {
+ "name": "@supabase/storage-js.index.VectorDataApi.queryVectors",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "name": "QueryVectorsOptions",
+ "properties": [
+ {
+ "name": "filter",
+ "type": {
+ "type": "record",
+ "name": "VectorFilter",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
},
- {
- "type": "function",
- "params": [
- {
- "name": "this",
- "type": {
+ "valueType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional JSON filter for metadata"
+ }
+ },
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index"
+ }
+ },
+ {
+ "name": "queryVector",
+ "type": {
+ "type": "object",
+ "name": "VectorData",
+ "properties": [
+ {
+ "name": "float32",
+ "type": {
+ "type": "array",
+ "elemType": {
"type": "intrinsic",
- "name": "any"
+ "name": "number"
}
},
- {
- "name": "ev",
- "type": {
- "type": "nameOnly",
- "name": "Event"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "any"
+ "comment": {
+ "shortText": "Array of 32-bit floating point numbers"
}
}
- }
- ]
- }
- },
- {
- "name": "OPEN",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "protocol",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "readyState",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "url",
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ]
+ },
+ "comment": {
+ "shortText": "Query vector to find similar vectors"
+ }
+ },
+ {
+ "name": "returnDistance",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include distance scores"
+ }
+ },
+ {
+ "name": "returnMetadata",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Whether to include metadata in results"
+ }
+ },
+ {
+ "name": "topK",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Number of nearest neighbors to return (default: 10)"
+ }
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the vector bucket"
+ }
}
- }
- ]
+ ]
+ },
+ "comment": {
+ "shortText": "Query options"
+ }
}
- }
- },
- "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor": {
- "name": "@supabase/realtime-js.WebSocketFactory.getWebSocketConstructor",
- "params": [],
+ ],
"ret": {
"type": {
- "type": "function",
- "params": [
- {
- "name": "url",
- "type": {
- "type": "union",
- "subTypes": [
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
{
- "type": "intrinsic",
- "name": "string"
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
},
{
- "type": "nameOnly",
- "name": "URL"
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
}
]
- }
- },
- {
- "name": "protocols",
- "type": {
- "type": "union",
- "subTypes": [
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
{
- "type": "intrinsic",
- "name": "string"
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
},
{
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
- },
- "isOptional": true
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "WebSocket"
- }
+ }
+ ]
}
}
+ },
+ "comment": {
+ "shortText": "Queries for similar vectors using approximate nearest neighbor (ANN) search\\nReturns top-K most similar vectors based on the configured distance metric\\nSupports optional metadata filtering (requires GetVectors permission)"
}
},
- "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported": {
- "name": "@supabase/realtime-js.WebSocketFactory.isWebSocketSupported",
+ "@supabase/storage-js.index.VectorDataApi.throwOnError": {
+ "name": "@supabase/storage-js.index.VectorDataApi.throwOnError",
"params": [],
"ret": {
"type": {
"type": "intrinsic",
- "name": "boolean"
- }
- }
- }
- }
- },
- {
- "name": "@supabase/storage-js",
- "methods": {
- "@supabase/storage-js.index.StorageApiError.constructor": {
- "name": "@supabase/storage-js.index.StorageApiError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusCode",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "StorageApiError"
- }
- }
- },
- "@supabase/storage-js.index.StorageApiError.toJSON": {
- "name": "@supabase/storage-js.index.StorageApiError.toJSON",
- "params": [],
- "ret": {
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "status",
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "name": "statusCode",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "name": "this"
}
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
}
},
- "@supabase/storage-js.index.StorageClient.constructor": {
- "name": "@supabase/storage-js.index.StorageClient.constructor",
+ "@supabase/storage-js.index.VectorIndexApi.constructor": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.constructor",
"params": [
{
"name": "url",
@@ -38520,130 +80277,412 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"isOptional": true
- },
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "VectorIndexApi"
+ }
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexApi.createIndex": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.createIndex",
+ "params": [
{
- "name": "opts",
+ "name": "options",
"type": {
"type": "object",
- "name": "StorageClientOptions",
+ "name": "CreateIndexOptions",
"properties": [
{
- "name": "useNewHostname",
+ "name": "dataType",
+ "type": {
+ "type": "literal",
+ "value": "float32"
+ }
+ },
+ {
+ "name": "dimension",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "number"
+ }
+ },
+ {
+ "name": "distanceMetric",
+ "type": {
+ "type": "union",
+ "name": "DistanceMetric",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "cosine"
+ },
+ {
+ "type": "literal",
+ "value": "euclidean"
+ },
+ {
+ "type": "literal",
+ "value": "dotproduct"
+ }
+ ]
+ }
+ },
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "metadataConfiguration",
+ "type": {
+ "type": "object",
+ "name": "MetadataConfiguration",
+ "properties": [
+ {
+ "name": "nonFilterableMetadataKeys",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Array of metadata keys that cannot be used in filters"
+ }
+ }
+ ]
},
"isOptional": true
+ },
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
]
},
- "isOptional": true
+ "comment": {
+ "shortText": "Index configuration"
+ }
}
],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "StorageClient"
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
}
+ },
+ "comment": {
+ "shortText": "Creates a new vector index within a bucket\\nDefines the schema for vectors including dimensionality, distance metric, and metadata config"
}
},
- "@supabase/storage-js.index.StorageClient.createBucket": {
- "name": "@supabase/storage-js.index.StorageClient.createBucket",
+ "@supabase/storage-js.index.VectorIndexApi.deleteIndex": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.deleteIndex",
"params": [
{
- "name": "id",
+ "name": "vectorBucketName",
"type": {
"type": "intrinsic",
"name": "string"
},
"comment": {
- "shortText": "A unique identifier for the bucket you are creating."
+ "shortText": "Name of the parent vector bucket"
}
},
{
- "name": "options",
+ "name": "indexName",
"type": {
- "type": "object",
- "properties": [
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index to delete"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
{
- "name": "allowedMimeTypes",
- "type": {
- "type": "union",
- "subTypes": [
- {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
"type": "literal",
"value": null
},
- {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
+ "comment": {
+ "shortText": "Null on success"
}
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "specifies the allowed mime types that this bucket can accept during upload.\\nThe default value is null, which allows files with all mime types to be uploaded.\\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
- }
+ }
+ ]
},
{
- "name": "fileSizeLimit",
- "type": {
- "type": "union",
- "subTypes": [
- {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
"type": "literal",
"value": null
},
- {
- "type": "intrinsic",
- "name": "string"
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
},
- {
- "type": "intrinsic",
- "name": "number"
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
- ]
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Deletes a vector index and all its data\\nThis operation removes the index schema and all vectors stored in the index"
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexApi.getIndex": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.getIndex",
+ "params": [
+ {
+ "name": "vectorBucketName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the parent vector bucket"
+ }
+ },
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Name of the index to retrieve"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "ApiResponse",
+ "subTypes": [
+ {
+ "type": "object",
+ "name": "SuccessResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "name": "ErrorResponse",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves metadata for a specific vector index\\nReturns index configuration including dimension, distance metric, and metadata settings"
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexApi.listIndexes": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.listIndexes",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "object",
+ "name": "ListIndexesOptions",
+ "properties": [
+ {
+ "name": "maxResults",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Maximum number of results to return (default: 100)"
+ }
+ },
+ {
+ "name": "nextToken",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
},
"isOptional": true,
"comment": {
- "shortText": "specifies the max file size in bytes that can be uploaded to this bucket.\\nThe global file size limit takes precedence over this value.\\nThe default value is null, which doesn't set a per bucket file size limit."
+ "shortText": "Token for pagination from previous response"
}
},
{
- "name": "public",
+ "name": "prefix",
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
},
+ "isOptional": true,
"comment": {
- "shortText": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations. By default, buckets are private."
+ "shortText": "Filter indexes by name prefix"
}
},
{
- "name": "type",
+ "name": "vectorBucketName",
"type": {
- "type": "union",
- "name": "BucketType",
- "subTypes": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "(private-beta) specifies the bucket type. see \`BucketType\` for more details.\\n - default bucket type is \`STANDARD\`"
+ "shortText": "Name of the parent vector bucket"
}
}
]
+ },
+ "comment": {
+ "shortText": "Listing options"
}
}
],
@@ -38653,37 +80692,56 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
- "name": "data"
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
+ }
},
{
"name": "error",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
},
{
"name": "error",
"type": {
"type": "nameOnly",
- "name": "StorageError"
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
@@ -38693,20 +80751,125 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Creates a new Storage bucket"
+ "shortText": "Lists vector indexes within a bucket with optional filtering and pagination\\nSupports prefix-based filtering and paginated results"
}
},
- "@supabase/storage-js.index.StorageClient.deleteBucket": {
- "name": "@supabase/storage-js.index.StorageClient.deleteBucket",
+ "@supabase/storage-js.index.VectorIndexApi.throwOnError": {
+ "name": "@supabase/storage-js.index.VectorIndexApi.throwOnError",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexScope.constructor": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.constructor",
"params": [
{
- "name": "id",
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "name": "vectorBucketName",
"type": {
"type": "intrinsic",
"name": "string"
+ }
+ },
+ {
+ "name": "indexName",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "VectorIndexScope"
+ }
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexScope.deleteVectors": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.deleteVectors",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "nameOnly",
+ "name": "Omit"
},
"comment": {
- "shortText": "The unique identifier of the bucket you would like to delete."
+ "shortText": "Deletion options (bucket and index names automatically set)"
}
}
],
@@ -38716,23 +80879,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
"name": "data",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
},
{
@@ -38740,25 +80900,35 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
},
{
"name": "error",
"type": {
"type": "nameOnly",
- "name": "StorageError"
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
@@ -38768,20 +80938,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Deletes an existing bucket. A bucket can't be deleted with existing objects inside it.\\nYou must first \`empty()\` the bucket."
+ "shortText": "Deletes vectors by keys from this index\\nConvenience method that automatically includes bucket and index names"
}
},
- "@supabase/storage-js.index.StorageClient.emptyBucket": {
- "name": "@supabase/storage-js.index.StorageClient.emptyBucket",
+ "@supabase/storage-js.index.VectorIndexScope.getVectors": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.getVectors",
"params": [
{
- "name": "id",
+ "name": "options",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "Omit"
},
"comment": {
- "shortText": "The unique identifier of the bucket you would like to empty."
+ "shortText": "Vector retrieval options (bucket and index names automatically set)"
}
}
],
@@ -38791,23 +80961,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
"name": "data",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
},
{
@@ -38815,25 +80982,35 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
},
{
"name": "error",
"type": {
"type": "nameOnly",
- "name": "StorageError"
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
@@ -38843,44 +81020,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Removes all objects inside a single bucket."
- }
- },
- "@supabase/storage-js.index.StorageClient.from": {
- "name": "@supabase/storage-js.index.StorageClient.from",
- "params": [
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The bucket id to operate on."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "default"
- }
- },
- "comment": {
- "shortText": "Perform file operation in a bucket."
+ "shortText": "Retrieves vectors by keys from this index\\nConvenience method that automatically includes bucket and index names"
}
},
- "@supabase/storage-js.index.StorageClient.getBucket": {
- "name": "@supabase/storage-js.index.StorageClient.getBucket",
+ "@supabase/storage-js.index.VectorIndexScope.listVectors": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.listVectors",
"params": [
{
- "name": "id",
+ "name": "options",
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "nameOnly",
+ "name": "Omit"
},
"comment": {
- "shortText": "The unique identifier of the bucket you would like to retrieve."
+ "shortText": "Listing options (bucket and index names automatically set)"
}
}
],
@@ -38890,96 +81043,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
"name": "data",
"type": {
- "type": "object",
- "name": "Bucket",
- "properties": [
- {
- "name": "allowed_mime_types",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "file_size_limit",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "owner",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "public",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "name": "type",
- "type": {
- "type": "union",
- "name": "BucketType",
- "subTypes": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
},
{
@@ -38987,25 +81064,35 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
},
{
"name": "error",
"type": {
"type": "nameOnly",
- "name": "StorageError"
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
@@ -39015,111 +81102,43 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Retrieves the details of an existing Storage bucket."
+ "shortText": "Lists vectors in this index with pagination\\nConvenience method that automatically includes bucket and index names"
}
},
- "@supabase/storage-js.index.StorageClient.listBuckets": {
- "name": "@supabase/storage-js.index.StorageClient.listBuckets",
- "params": [],
+ "@supabase/storage-js.index.VectorIndexScope.putVectors": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.putVectors",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "nameOnly",
+ "name": "Omit"
+ },
+ "comment": {
+ "shortText": "Vector insertion options (bucket and index names automatically set)"
+ }
+ }
+ ],
"ret": {
"type": {
"type": "promise",
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
"name": "data",
"type": {
- "type": "array",
- "elemType": {
- "type": "object",
- "name": "Bucket",
- "properties": [
- {
- "name": "allowed_mime_types",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "file_size_limit",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "owner",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "public",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "name": "type",
- "type": {
- "type": "union",
- "name": "BucketType",
- "subTypes": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
},
{
@@ -39127,128 +81146,60 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "StorageError"
- }
- }
- ]
- }
- ]
- }
- }
- },
- "comment": {
- "shortText": "Retrieves the details of all Storage buckets within an existing project."
- }
- },
- "@supabase/storage-js.index.StorageClient.throwOnError": {
- "name": "@supabase/storage-js.index.StorageClient.throwOnError",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "this"
- }
- },
- "comment": {
- "shortText": "Enable throwing errors instead of returning them."
- }
- },
- "@supabase/storage-js.index.StorageClient.updateBucket": {
- "name": "@supabase/storage-js.index.StorageClient.updateBucket",
- "params": [
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "A unique identifier for the bucket you are updating."
- }
- },
- {
- "name": "options",
- "type": {
- "type": "object",
- "properties": [
- {
- "name": "allowedMimeTypes",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
},
- {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
+ "comment": {
+ "shortText": "Null on error"
}
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "specifies the allowed mime types that this bucket can accept during upload.\\nThe default value is null, which allows files with all mime types to be uploaded.\\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
- }
- },
- {
- "name": "fileSizeLimit",
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageVectorsError"
},
- {
- "type": "intrinsic",
- "name": "number"
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "specifies the max file size in bytes that can be uploaded to this bucket.\\nThe global file size limit takes precedence over this value.\\nThe default value is null, which doesn't set a per bucket file size limit."
- }
- },
- {
- "name": "public",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "comment": {
- "shortText": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations."
- }
+ }
+ ]
}
]
}
}
+ },
+ "comment": {
+ "shortText": "Inserts or updates vectors in this index\\nConvenience method that automatically includes bucket and index names"
+ }
+ },
+ "@supabase/storage-js.index.VectorIndexScope.queryVectors": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.queryVectors",
+ "params": [
+ {
+ "name": "options",
+ "type": {
+ "type": "nameOnly",
+ "name": "Omit"
+ },
+ "comment": {
+ "shortText": "Query options (bucket and index names automatically set)"
+ }
+ }
],
"ret": {
"type": {
@@ -39256,23 +81207,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
+ "name": "ApiResponse",
"subTypes": [
{
"type": "object",
+ "name": "SuccessResponse",
"properties": [
{
"name": "data",
"type": {
- "type": "object",
- "properties": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "nameOnly",
+ "name": "@supabase/storage-js.SuccessResponse.T"
+ },
+ "comment": {
+ "shortText": "Response data of type T"
}
},
{
@@ -39280,25 +81228,35 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on success"
}
}
]
},
{
"type": "object",
+ "name": "ErrorResponse",
"properties": [
{
"name": "data",
"type": {
"type": "literal",
"value": null
+ },
+ "comment": {
+ "shortText": "Null on error"
}
},
{
"name": "error",
"type": {
"type": "nameOnly",
- "name": "StorageError"
+ "name": "StorageVectorsError"
+ },
+ "comment": {
+ "shortText": "StorageVectorsError with details"
}
}
]
@@ -39308,50 +81266,20 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Updates a Storage bucket"
- }
- },
- "@supabase/storage-js.index.StorageError.constructor": {
- "name": "@supabase/storage-js.index.StorageError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "ret": {
- "type": {
- "type": "nameOnly",
- "name": "StorageError"
- }
+ "shortText": "Queries for similar vectors in this index\\nConvenience method that automatically includes bucket and index names"
}
},
- "@supabase/storage-js.index.StorageUnknownError.constructor": {
- "name": "@supabase/storage-js.index.StorageUnknownError.constructor",
- "params": [
- {
- "name": "message",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "originalError",
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
+ "@supabase/storage-js.index.VectorIndexScope.throwOnError": {
+ "name": "@supabase/storage-js.index.VectorIndexScope.throwOnError",
+ "params": [],
"ret": {
"type": {
- "type": "nameOnly",
- "name": "StorageUnknownError"
+ "type": "intrinsic",
+ "name": "this"
}
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
}
},
"@supabase/storage-js.packages/BlobDownloadBuilder.default.constructor": {
@@ -39473,69 +81401,499 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "literal",
"value": null
}
- }
- ]
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "nameOnly",
+ "name": "TResult"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Attaches a callback for only the rejection of the Promise."
+ }
+ },
+ "@supabase/storage-js.packages/BlobDownloadBuilder.default.finally": {
+ "name": "@supabase/storage-js.packages/BlobDownloadBuilder.default.finally",
+ "params": [
+ {
+ "name": "onfinally",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is settled (fulfilled or rejected)."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "name": "DownloadResult",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The\\nresolved value cannot be modified from the callback."
+ }
+ },
+ "@supabase/storage-js.packages/BlobDownloadBuilder.default.then": {
+ "name": "@supabase/storage-js.packages/BlobDownloadBuilder.default.then",
+ "params": [
+ {
+ "name": "onfulfilled",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "value",
+ "type": {
+ "type": "union",
+ "name": "DownloadResult",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "nameOnly",
+ "name": "T"
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult1"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is resolved."
+ }
+ },
+ {
+ "name": "onrejected",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "function",
+ "params": [
+ {
+ "name": "reason",
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult2"
+ },
+ {
+ "type": "nameOnly",
+ "name": "PromiseLike"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "The callback to execute when the Promise is rejected."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "TResult1"
+ },
+ {
+ "type": "nameOnly",
+ "name": "TResult2"
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ }
+ },
+ "@supabase/storage-js.packages/StorageAnalyticsApi.default.constructor": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.constructor",
+ "params": [
+ {
+ "name": "url",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The base URL for the storage API"
+ }
+ },
+ {
+ "name": "headers",
+ "type": {
+ "type": "index signature",
+ "keyType": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "valueType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "comment": {
+ "shortText": "HTTP headers to include in requests"
+ }
+ },
+ {
+ "name": "fetch",
+ "type": {
+ "type": "function",
+ "params": [
+ {
+ "name": "input",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "nameOnly",
+ "name": "RequestInfo"
+ },
+ {
+ "type": "nameOnly",
+ "name": "URL"
+ }
+ ]
+ }
+ },
+ {
+ "name": "init",
+ "type": {
+ "type": "nameOnly",
+ "name": "RequestInit"
+ },
+ "isOptional": true
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "nameOnly",
+ "name": "Response"
+ }
+ }
+ },
+ "comment": {
+ "shortText": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Optional custom fetch implementation"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "nameOnly",
+ "name": "default"
+ }
+ },
+ "comment": {
+ "shortText": "Creates a new StorageAnalyticsApi instance"
+ }
+ },
+ "@supabase/storage-js.packages/StorageAnalyticsApi.default.createBucket": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.createBucket",
+ "params": [
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "A unique name for the bucket you are creating"
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "name": "AnalyticBucket",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ISO 8601 timestamp of bucket creation"
+ }
+ },
+ {
+ "name": "format",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Storage format used (e.g., 'iceberg')"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the bucket"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "ANALYTICS"
+ },
+ "comment": {
+ "shortText": "Bucket type - always 'ANALYTICS' for analytics buckets"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ISO 8601 timestamp of last update"
+ }
+ }
+ ]
+ }
},
{
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "StorageError"
- }
- }
- ]
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
}
]
},
{
- "type": "nameOnly",
- "name": "TResult"
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
}
]
}
}
},
"comment": {
- "shortText": "Attaches a callback for only the rejection of the Promise."
+ "shortText": "Creates a new analytics bucket using Iceberg tables\\nAnalytics buckets are optimized for analytical queries and data processing"
}
},
- "@supabase/storage-js.packages/BlobDownloadBuilder.default.finally": {
- "name": "@supabase/storage-js.packages/BlobDownloadBuilder.default.finally",
+ "@supabase/storage-js.packages/StorageAnalyticsApi.default.deleteBucket": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.deleteBucket",
"params": [
{
- "name": "onfinally",
+ "name": "bucketId",
"type": {
- "type": "union",
- "subTypes": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "function",
- "params": [],
- "ret": {
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
},
- "isOptional": true,
"comment": {
- "shortText": "The callback to execute when the Promise is settled (fulfilled or rejected)."
+ "shortText": "The unique identifier of the bucket you would like to delete"
}
}
],
@@ -39545,7 +81903,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "Promise",
"awaited": {
"type": "union",
- "name": "DownloadResult",
"subTypes": [
{
"type": "object",
@@ -39553,8 +81910,16 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
{
"name": "data",
"type": {
- "type": "nameOnly",
- "name": "T"
+ "type": "object",
+ "properties": [
+ {
+ "name": "message",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
}
},
{
@@ -39590,136 +81955,103 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The\\nresolved value cannot be modified from the callback."
+ "shortText": "Deletes an existing analytics bucket\\nA bucket can't be deleted with existing objects inside it\\nYou must first empty the bucket before deletion"
}
},
- "@supabase/storage-js.packages/BlobDownloadBuilder.default.then": {
- "name": "@supabase/storage-js.packages/BlobDownloadBuilder.default.then",
+ "@supabase/storage-js.packages/StorageAnalyticsApi.default.listBuckets": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.listBuckets",
"params": [
{
- "name": "onfulfilled",
+ "name": "options",
"type": {
- "type": "union",
- "subTypes": [
+ "type": "object",
+ "properties": [
{
- "type": "literal",
- "value": null
+ "name": "limit",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Maximum number of buckets to return"
+ }
},
{
- "type": "function",
- "params": [
- {
- "name": "value",
- "type": {
- "type": "union",
- "name": "DownloadResult",
- "subTypes": [
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "nameOnly",
- "name": "T"
- }
- },
- {
- "name": "error",
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ]
- },
- {
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "StorageError"
- }
- }
- ]
- }
- ]
- }
- }
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult1"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
+ "name": "offset",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Number of buckets to skip"
}
- }
- ]
- },
- "isOptional": true,
- "comment": {
- "shortText": "The callback to execute when the Promise is resolved."
- }
- },
- {
- "name": "onrejected",
- "type": {
- "type": "union",
- "subTypes": [
+ },
{
- "type": "literal",
- "value": null
+ "name": "search",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Search term to filter bucket names"
+ }
},
{
- "type": "function",
- "params": [
- {
- "name": "reason",
- "type": {
- "type": "intrinsic",
- "name": "any"
+ "name": "sortColumn",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "id"
+ },
+ {
+ "type": "literal",
+ "value": "name"
+ },
+ {
+ "type": "literal",
+ "value": "created_at"
+ },
+ {
+ "type": "literal",
+ "value": "updated_at"
}
- }
- ],
- "ret": {
- "type": {
- "type": "union",
- "subTypes": [
- {
- "type": "nameOnly",
- "name": "TResult2"
- },
- {
- "type": "nameOnly",
- "name": "PromiseLike"
- }
- ]
- }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ },
+ {
+ "name": "sortOrder",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "asc"
+ },
+ {
+ "type": "literal",
+ "value": "desc"
+ }
+ ]
+ },
+ "isOptional": true,
+ "comment": {
+ "shortText": "Sort order ('asc' or 'desc')"
}
}
]
},
"isOptional": true,
"comment": {
- "shortText": "The callback to execute when the Promise is rejected."
+ "shortText": "Query parameters for listing buckets"
}
}
],
@@ -39731,19 +82063,117 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "union",
"subTypes": [
{
- "type": "nameOnly",
- "name": "TResult1"
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "object",
+ "name": "AnalyticBucket",
+ "properties": [
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ISO 8601 timestamp of bucket creation"
+ }
+ },
+ {
+ "name": "format",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Storage format used (e.g., 'iceberg')"
+ }
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "Unique identifier for the bucket"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "literal",
+ "value": "ANALYTICS"
+ },
+ "comment": {
+ "shortText": "Bucket type - always 'ANALYTICS' for analytics buckets"
+ }
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "ISO 8601 timestamp of last update"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
},
{
- "type": "nameOnly",
- "name": "TResult2"
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
}
]
}
}
},
"comment": {
- "shortText": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ "shortText": "Retrieves the details of all Analytics Storage buckets within an existing project\\nOnly returns buckets of type 'ANALYTICS'"
+ }
+ },
+ "@supabase/storage-js.packages/StorageAnalyticsApi.default.throwOnError": {
+ "name": "@supabase/storage-js.packages/StorageAnalyticsApi.default.throwOnError",
+ "params": [],
+ "ret": {
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ },
+ "comment": {
+ "shortText": "Enable throwing errors instead of returning them in the response\\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
}
},
"@supabase/storage-js.packages/StorageBucketApi.default.constructor": {
@@ -40138,160 +82568,237 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
}
},
"comment": {
- "shortText": "Removes all objects inside a single bucket."
+ "shortText": "Removes all objects inside a single bucket."
+ }
+ },
+ "@supabase/storage-js.packages/StorageBucketApi.default.getBucket": {
+ "name": "@supabase/storage-js.packages/StorageBucketApi.default.getBucket",
+ "params": [
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "comment": {
+ "shortText": "The unique identifier of the bucket you would like to retrieve."
+ }
+ }
+ ],
+ "ret": {
+ "type": {
+ "type": "promise",
+ "name": "Promise",
+ "awaited": {
+ "type": "union",
+ "subTypes": [
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "object",
+ "name": "Bucket",
+ "properties": [
+ {
+ "name": "allowed_mime_types",
+ "type": {
+ "type": "array",
+ "elemType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ "isOptional": true
+ },
+ {
+ "name": "created_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "file_size_limit",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "id",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "name",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "owner",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "name": "public",
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "name": "type",
+ "type": {
+ "type": "union",
+ "name": "BucketType",
+ "subTypes": [
+ {
+ "type": "literal",
+ "value": "STANDARD"
+ },
+ {
+ "type": "literal",
+ "value": "ANALYTICS"
+ }
+ ]
+ },
+ "isOptional": true
+ },
+ {
+ "name": "updated_at",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ]
+ },
+ {
+ "type": "object",
+ "properties": [
+ {
+ "name": "data",
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "name": "error",
+ "type": {
+ "type": "nameOnly",
+ "name": "StorageError"
+ }
+ }
+ ]
+ }
+ ]
+ }
+ }
+ },
+ "comment": {
+ "shortText": "Retrieves the details of an existing Storage bucket."
}
},
- "@supabase/storage-js.packages/StorageBucketApi.default.getBucket": {
- "name": "@supabase/storage-js.packages/StorageBucketApi.default.getBucket",
+ "@supabase/storage-js.packages/StorageBucketApi.default.listBuckets": {
+ "name": "@supabase/storage-js.packages/StorageBucketApi.default.listBuckets",
"params": [
{
- "name": "id",
+ "name": "options",
"type": {
- "type": "intrinsic",
- "name": "string"
- },
- "comment": {
- "shortText": "The unique identifier of the bucket you would like to retrieve."
- }
- }
- ],
- "ret": {
- "type": {
- "type": "promise",
- "name": "Promise",
- "awaited": {
- "type": "union",
- "subTypes": [
+ "type": "object",
+ "name": "ListBucketOptions",
+ "properties": [
{
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
- "type": "object",
- "name": "Bucket",
- "properties": [
- {
- "name": "allowed_mime_types",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "file_size_limit",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "owner",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "public",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "name": "type",
- "type": {
- "type": "union",
- "name": "BucketType",
- "subTypes": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "name": "error",
- "type": {
+ "name": "limit",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "offset",
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "search",
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "isOptional": true
+ },
+ {
+ "name": "sortColumn",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
"type": "literal",
- "value": null
+ "value": "id"
+ },
+ {
+ "type": "literal",
+ "value": "name"
+ },
+ {
+ "type": "literal",
+ "value": "created_at"
+ },
+ {
+ "type": "literal",
+ "value": "updated_at"
}
- }
- ]
+ ]
+ },
+ "isOptional": true
},
{
- "type": "object",
- "properties": [
- {
- "name": "data",
- "type": {
+ "name": "sortOrder",
+ "type": {
+ "type": "union",
+ "subTypes": [
+ {
"type": "literal",
- "value": null
- }
- },
- {
- "name": "error",
- "type": {
- "type": "nameOnly",
- "name": "StorageError"
+ "value": "asc"
+ },
+ {
+ "type": "literal",
+ "value": "desc"
}
- }
- ]
+ ]
+ },
+ "isOptional": true
}
]
- }
+ },
+ "isOptional": true
}
- },
- "comment": {
- "shortText": "Retrieves the details of an existing Storage bucket."
- }
- },
- "@supabase/storage-js.packages/StorageBucketApi.default.listBuckets": {
- "name": "@supabase/storage-js.packages/StorageBucketApi.default.listBuckets",
- "params": [],
+ ],
"ret": {
"type": {
"type": "promise",
@@ -40976,7 +83483,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "fill"
+ "value": "cover"
},
{
"type": "literal",
@@ -40984,7 +83491,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
{
"type": "literal",
- "value": "cover"
+ "value": "fill"
}
]
},
@@ -41408,7 +83915,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "fill"
+ "value": "cover"
},
{
"type": "literal",
@@ -41416,7 +83923,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
{
"type": "literal",
- "value": "cover"
+ "value": "fill"
}
]
},
@@ -41781,6 +84288,9 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": ""
}
},
{
@@ -41918,11 +84428,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
{
"type": "literal",
- "value": "updated_at"
+ "value": "created_at"
},
{
"type": "literal",
- "value": "created_at"
+ "value": "updated_at"
}
]
}
@@ -41934,11 +84444,11 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"subTypes": [
{
"type": "literal",
- "value": "desc"
+ "value": "asc"
},
{
"type": "literal",
- "value": "asc"
+ "value": "desc"
}
]
},
@@ -42012,16 +84522,8 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "array",
"elemType": {
- "type": "object",
- "properties": [
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
+ "type": "nameOnly",
+ "name": "SearchV2Folder"
}
}
},
@@ -42046,112 +84548,24 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": "array",
"elemType": {
"type": "object",
- "name": "FileObject",
+ "name": "SearchV2Object",
"properties": [
{
- "name": "bucket_id",
+ "name": "created_at",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "buckets",
- "type": {
- "type": "object",
- "name": "Bucket",
- "properties": [
- {
- "name": "allowed_mime_types",
- "type": {
- "type": "array",
- "elemType": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- "isOptional": true
- },
- {
- "name": "created_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "file_size_limit",
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "isOptional": true
- },
- {
- "name": "id",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "name",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "owner",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "name": "public",
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "name": "type",
- "type": {
- "type": "union",
- "name": "BucketType",
- "subTypes": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
- },
- "isOptional": true
- },
- {
- "name": "updated_at",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "name": "created_at",
+ "name": "id",
"type": {
"type": "intrinsic",
"name": "string"
}
},
{
- "name": "id",
+ "name": "key",
"type": {
"type": "intrinsic",
"name": "string"
@@ -42162,6 +84576,9 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": ""
}
},
{
@@ -42186,13 +84603,6 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"name": "string"
}
},
- {
- "name": "owner",
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
{
"name": "updated_at",
"type": {
@@ -42504,6 +84914,9 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "comment": {
+ "shortText": ""
}
},
{
@@ -42641,7 +85054,7 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
{
"type": "nameOnly",
- "name": "ArrayBufferView"
+ "name": "ReadableStream"
},
{
"type": "nameOnly",
@@ -42649,23 +85062,23 @@ exports[`TS type spec parsing > matches snapshot 1`] = `
},
{
"type": "nameOnly",
- "name": "FormData"
+ "name": "File"
},
{
"type": "nameOnly",
- "name": "URLSearchParams"
+ "name": "FormData"
},
{
"type": "nameOnly",
- "name": "File"
+ "name": "@types/node.__global.NodeJS.ReadableStream"
},
{
"type": "nameOnly",
- "name": "ReadableStream"
+ "name": "URLSearchParams"
},
{
"type": "nameOnly",
- "name": "@types/node.NodeJS.ReadableStream"
+ "name": "ArrayBufferView"
},
{
"type": "nameOnly",
diff --git a/apps/docs/spec/api_v1_openapi.json b/apps/docs/spec/api_v1_openapi.json
index 27e12938d79da..cab32b3012514 100644
--- a/apps/docs/spec/api_v1_openapi.json
+++ b/apps/docs/spec/api_v1_openapi.json
@@ -38,7 +38,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get database branch config",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
},
"patch": {
"description": "Updates the configuration of the specified database branch",
@@ -80,7 +82,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Update database branch config",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
},
"delete": {
"description": "Deletes the specified database branch",
@@ -118,7 +122,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Delete a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/push": {
@@ -164,7 +170,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Pushes a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/merge": {
@@ -210,7 +218,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Merges a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/reset": {
@@ -256,7 +266,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Resets a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/diff": {
@@ -298,7 +310,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Diffs a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects": {
@@ -321,7 +335,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all projects",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
},
"post": {
"operationId": "v1-create-a-project",
@@ -342,7 +358,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Create a project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/available-regions": {
@@ -366,6 +384,38 @@
"type": "string",
"enum": ["NA", "SA", "EU", "AF", "AS", "OC", "AN"]
}
+ },
+ {
+ "name": "desired_instance_size",
+ "required": false,
+ "in": "query",
+ "description": "Desired instance size",
+ "schema": {
+ "example": "nano",
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ }
}
],
"responses": {
@@ -402,7 +452,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all organizations",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [{ "name": "OAuth scope: organizations:read", "position": "after" }],
+ "x-oauth-scope": "organizations:read"
},
"post": {
"operationId": "v1-create-an-organization",
@@ -637,7 +689,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists SQL snippets for the logged in user",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/snippets/{id}": {
@@ -662,7 +716,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets a specific SQL snippet",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/actions": {
@@ -706,7 +762,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all action runs",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
},
"head": {
"description": "Returns the total number of action runs of the specified project.",
@@ -737,7 +795,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Count the number of action runs",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/actions/{run_id}": {
@@ -774,7 +834,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get the status of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/actions/{run_id}/status": {
@@ -819,7 +881,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Update the status of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects/{ref}/actions/{run_id}/logs": {
@@ -854,7 +918,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get the logs of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/api-keys": {
@@ -894,7 +960,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get project api keys",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
},
"post": {
"operationId": "v1-create-project-api-key",
@@ -933,7 +1001,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Creates a new API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/api-keys/legacy": {
@@ -963,7 +1033,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Check whether JWT based legacy (anon, service_role) API keys are enabled. This API endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
},
"put": {
"operationId": "v1-update-project-legacy-api-keys",
@@ -998,7 +1070,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Disable or re-enable JWT based legacy (anon, service_role) API keys. This API endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/api-keys/{id}": {
@@ -1045,7 +1119,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates an API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-project-api-key",
@@ -1084,7 +1160,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get API key",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
},
"delete": {
"operationId": "v1-delete-project-api-key",
@@ -1131,7 +1209,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Deletes an API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/branches": {
@@ -1166,7 +1246,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all database branches",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
},
"post": {
"description": "Creates a database branch from the specified project.",
@@ -1200,7 +1282,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Create a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
},
"delete": {
"description": "Disables preview branching for the specified project",
@@ -1223,7 +1307,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Disables preview branching",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:write", "position": "after" }],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects/{ref}/branches/{name}": {
@@ -1254,7 +1340,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [{ "name": "OAuth scope: environment:read", "position": "after" }],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/custom-hostname": {
@@ -1285,7 +1373,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets project's custom hostname config",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:read", "position": "after" }],
+ "x-oauth-scope": "domains:read"
},
"delete": {
"operationId": "v1-Delete hostname config",
@@ -1307,7 +1397,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Deletes a project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/initialize": {
@@ -1346,7 +1438,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Updates project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/reverify": {
@@ -1377,7 +1471,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Attempts to verify the DNS configuration for project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/activate": {
@@ -1408,7 +1504,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Activates a custom hostname for a project.",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/network-bans/retrieve": {
@@ -1439,7 +1537,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets project's network bans",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/network-bans/retrieve/enriched": {
@@ -1470,7 +1570,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets project's network bans with additional information about which databases they affect",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/network-bans": {
@@ -1502,7 +1604,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Remove network bans.",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/network-restrictions": {
@@ -1533,7 +1637,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets project's network restrictions",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
},
"patch": {
"operationId": "v1-patch-network-restrictions",
@@ -1570,7 +1676,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Alpha] Updates project's network restrictions by adding or removing CIDRs",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/network-restrictions/apply": {
@@ -1609,7 +1717,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Updates project's network restrictions",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/pgsodium": {
@@ -1640,7 +1750,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets project's pgsodium config",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
},
"put": {
"operationId": "v1-update-pgsodium-config",
@@ -1677,7 +1789,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Updates project's pgsodium config. Updating the root_key can cause all data encrypted with the older key to become inaccessible.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/postgrest": {
@@ -1708,7 +1822,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's postgrest config",
- "tags": ["Rest"]
+ "tags": ["Rest"],
+ "x-badges": [{ "name": "OAuth scope: rest:read", "position": "after" }],
+ "x-oauth-scope": "rest:read"
},
"patch": {
"operationId": "v1-update-postgrest-service-config",
@@ -1745,7 +1861,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates project's postgrest config",
- "tags": ["Rest"]
+ "tags": ["Rest"],
+ "x-badges": [{ "name": "OAuth scope: rest:write", "position": "after" }],
+ "x-oauth-scope": "rest:write"
}
},
"/v1/projects/{ref}": {
@@ -1776,7 +1894,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets a specific project that belongs to the authenticated user",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
},
"delete": {
"operationId": "v1-delete-a-project",
@@ -1804,7 +1924,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Deletes the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/secrets": {
@@ -1839,7 +1961,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
},
"post": {
"description": "Creates multiple secrets and adds them to the specified project.",
@@ -1868,7 +1992,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Bulk create secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
},
"delete": {
"description": "Deletes all secrets with the given names from the specified project",
@@ -1897,7 +2023,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Bulk delete secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/ssl-enforcement": {
@@ -1928,7 +2056,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Get project's SSL enforcement configuration.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"put": {
"operationId": "v1-update-ssl-enforcement-config",
@@ -1965,7 +2095,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Update project's SSL enforcement configuration.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/types/typescript": {
@@ -2003,7 +2135,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Generate TypeScript types",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/vanity-subdomain": {
@@ -2034,7 +2168,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets current vanity subdomain config",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:read", "position": "after" }],
+ "x-oauth-scope": "domains:read"
},
"delete": {
"operationId": "v1-deactivate-vanity-subdomain-config",
@@ -2056,7 +2192,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Deletes a project's vanity subdomain configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/vanity-subdomain/check-availability": {
@@ -2093,7 +2231,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Checks vanity subdomain availability",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/vanity-subdomain/activate": {
@@ -2130,7 +2270,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Activates a vanity subdomain for a project.",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [{ "name": "OAuth scope: domains:write", "position": "after" }],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/upgrade": {
@@ -2167,7 +2309,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Upgrades the project's Postgres version",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/upgrade/eligibility": {
@@ -2198,7 +2342,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Returns the project's eligibility for upgrades",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/upgrade/status": {
@@ -2235,7 +2381,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Gets the latest status of the project's upgrade",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/readonly": {
@@ -2266,7 +2414,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Returns project's readonly mode status",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/readonly/temporary-disable": {
@@ -2290,7 +2440,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Disables project's readonly mode for the next 15 minutes",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/read-replicas/setup": {
@@ -2415,7 +2567,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's service health status",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys/legacy": {
@@ -2445,7 +2599,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Set up the project's existing JWT secret as an in_use JWT signing key. This endpoint will be removed in the future always check for HTTP 404 Not Found.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-legacy-signing-key",
@@ -2473,7 +2629,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get the signing key information for the JWT secret imported as signing key for this project. This endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys": {
@@ -2511,7 +2669,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Create a new signing key for the project in standby status",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-project-signing-keys",
@@ -2539,7 +2699,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all signing keys for the project",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:read", "position": "after" }],
+ "x-oauth-scope": "secrets:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys/{id}": {
@@ -2609,7 +2771,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Remove a signing key from a project. Only possible if the key has been in revoked status for a while.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
},
"patch": {
"operationId": "v1-update-project-signing-key",
@@ -2651,7 +2815,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Update a signing key, mainly its status",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: secrets:write", "position": "after" }],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/config/storage": {
@@ -2743,7 +2909,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's Postgres config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"put": {
"operationId": "v1-update-postgres-config",
@@ -2780,7 +2948,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates project's Postgres config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/config/database/pgbouncer": {
@@ -2810,7 +2980,9 @@
"500": { "description": "Failed to retrieve project's pgbouncer config" }
},
"summary": "Get project's pgbouncer config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/config/database/pooler": {
@@ -2844,7 +3016,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's supavisor config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"patch": {
"operationId": "v1-update-pooler-config",
@@ -2881,7 +3055,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates project's supavisor config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/config/auth": {
@@ -2912,7 +3088,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's auth config",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:read", "position": "after" }],
+ "x-oauth-scope": "auth:read"
},
"patch": {
"operationId": "v1-update-auth-service-config",
@@ -2949,7 +3127,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates a project's auth config",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
}
},
"/v1/projects/{ref}/config/auth/third-party-auth": {
@@ -2985,7 +3165,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Creates a new third-party auth integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-list-project-tpa-integrations",
@@ -3016,7 +3198,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists all third-party auth integrations",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:read", "position": "after" }],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/config/auth/third-party-auth/{tpa_id}": {
@@ -3050,7 +3234,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Removes a third-party auth integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-get-project-tpa-integration",
@@ -3082,7 +3268,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get a third-party integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:read", "position": "after" }],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/pause": {
@@ -3105,7 +3293,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Pauses the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/restore": {
@@ -3137,7 +3327,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists available restore versions for the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
},
"post": {
"operationId": "v1-restore-a-project",
@@ -3158,7 +3350,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Restores the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/restore/cancel": {
@@ -3181,7 +3375,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Cancels the given project restoration",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [{ "name": "OAuth scope: projects:write", "position": "after" }],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/billing/addons": {
@@ -3418,7 +3614,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project performance advisors.",
- "tags": ["Advisors"]
+ "tags": ["Advisors"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/advisors/security": {
@@ -3456,7 +3654,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project security advisors.",
- "tags": ["Advisors"]
+ "tags": ["Advisors"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/analytics/endpoints/logs.all": {
@@ -3498,7 +3698,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets project's logs",
- "tags": ["Analytics"]
+ "tags": ["Analytics"],
+ "x-badges": [{ "name": "OAuth scope: analytics:read", "position": "after" }],
+ "x-oauth-scope": "analytics:read"
}
},
"/v1/projects/{ref}/analytics/endpoints/usage.api-counts": {
@@ -3642,7 +3844,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Create a login role for CLI with temporary password",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
},
"delete": {
"operationId": "v1-delete-login-roles",
@@ -3671,7 +3875,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Delete existing login roles used by CLI",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/migrations": {
@@ -3703,7 +3909,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] List applied migration versions",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"post": {
"description": "Only available to selected partner OAuth apps",
@@ -3741,7 +3949,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Apply a database migration",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
},
"put": {
"description": "Only available to selected partner OAuth apps",
@@ -3779,7 +3989,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Upsert a database migration without applying",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/query": {
@@ -3809,7 +4021,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Run sql query",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/webhooks/enable": {
@@ -3833,7 +4047,9 @@
},
"security": [{ "bearer": [] }],
"summary": "[Beta] Enables Database Webhooks on the project",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/context": {
@@ -3865,7 +4081,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets database metadata for the given project.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: projects:read", "position": "after" }],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/database/jit": {
@@ -3895,7 +4113,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Get user-id to role mappings for JIT access",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"post": {
"description": "Authorizes the request to assume a role in the project database",
@@ -3933,7 +4153,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Authorize user-id to role mappings for JIT access",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
},
"put": {
"description": "Modifies the roles that can be assumed and for how long",
@@ -4065,7 +4287,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List all functions",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:read", "position": "after" }],
+ "x-oauth-scope": "edge_functions:read"
},
"post": {
"deprecated": true,
@@ -4145,7 +4369,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Create a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:write", "position": "after" }],
+ "x-oauth-scope": "edge_functions:write"
},
"put": {
"description": "Bulk update functions. It will create a new function or replace existing. The operation is idempotent. NOTE: You will need to manually bump the version.",
@@ -4184,7 +4410,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Bulk update functions",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:write", "position": "after" }],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/deploy": {
@@ -4238,7 +4466,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Deploy a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:write", "position": "after" }],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/{function_slug}": {
@@ -4277,7 +4507,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Retrieve a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:read", "position": "after" }],
+ "x-oauth-scope": "edge_functions:read"
},
"patch": {
"description": "Updates a function with the specified slug and project.",
@@ -4362,7 +4594,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Update a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:write", "position": "after" }],
+ "x-oauth-scope": "edge_functions:write"
},
"delete": {
"description": "Deletes a function with the specified slug from the specified project.",
@@ -4392,7 +4626,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Delete a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:write", "position": "after" }],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/{function_slug}/body": {
@@ -4429,7 +4665,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Retrieve a function body",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [{ "name": "OAuth scope: edge_functions:read", "position": "after" }],
+ "x-oauth-scope": "edge_functions:read"
}
},
"/v1/projects/{ref}/storage/buckets": {
@@ -4463,7 +4701,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists all buckets",
- "tags": ["Storage"]
+ "tags": ["Storage"],
+ "x-badges": [{ "name": "OAuth scope: storage:read", "position": "after" }],
+ "x-oauth-scope": "storage:read"
}
},
"/v1/projects/{ref}/config/auth/sso/providers": {
@@ -4500,7 +4740,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Creates a new SSO provider",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-list-all-sso-provider",
@@ -4529,7 +4771,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists all SSO providers",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:read", "position": "after" }],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/config/auth/sso/providers/{provider_id}": {
@@ -4568,7 +4812,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:read", "position": "after" }],
+ "x-oauth-scope": "auth:read"
},
"put": {
"operationId": "v1-update-a-sso-provider",
@@ -4611,7 +4857,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Updates a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
},
"delete": {
"operationId": "v1-delete-a-sso-provider",
@@ -4648,7 +4896,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Removes a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [{ "name": "OAuth scope: auth:write", "position": "after" }],
+ "x-oauth-scope": "auth:write"
}
},
"/v1/projects/{ref}/database/backups": {
@@ -4677,7 +4927,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Lists all backups",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/database/backups/restore-pitr": {
@@ -4706,7 +4958,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Restores a PITR backup for a database",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/backups/restore-point": {
@@ -4745,7 +4999,9 @@
"security": [{ "bearer": [] }],
"summary": "Initiates a creation of a restore point for a database",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-internal": true,
+ "x-oauth-scope": "database:write"
},
"get": {
"operationId": "v1-get-restore-point",
@@ -4781,7 +5037,9 @@
"security": [{ "bearer": [] }],
"summary": "Get restore points for project",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [{ "name": "OAuth scope: database:read", "position": "after" }],
+ "x-internal": true,
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/database/backups/undo": {
@@ -4811,7 +5069,9 @@
"security": [{ "bearer": [] }],
"summary": "Initiates an undo to a given restore point",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [{ "name": "OAuth scope: database:write", "position": "after" }],
+ "x-internal": true,
+ "x-oauth-scope": "database:write"
}
},
"/v1/organizations/{slug}/members": {
@@ -4844,7 +5104,9 @@
},
"security": [{ "bearer": [] }],
"summary": "List members of an organization",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [{ "name": "OAuth scope: organizations:read", "position": "after" }],
+ "x-oauth-scope": "organizations:read"
}
},
"/v1/organizations/{slug}": {
@@ -4874,7 +5136,9 @@
},
"security": [{ "bearer": [] }],
"summary": "Gets information about the organization",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [{ "name": "OAuth scope: organizations:read", "position": "after" }],
+ "x-oauth-scope": "organizations:read"
}
},
"/v1/organizations/{slug}/project-claim/{token}": {
@@ -4931,6 +5195,74 @@
"tags": ["Organizations"],
"x-internal": true
}
+ },
+ "/v1/organizations/{slug}/projects": {
+ "get": {
+ "description": "Returns a paginated list of projects for the specified organization.\n\n This endpoint uses offset-based pagination. Use the `offset` parameter to skip a number of projects and the `limit` parameter to control the number of projects returned per page.",
+ "operationId": "v1-get-all-projects-for-organization",
+ "parameters": [
+ {
+ "name": "slug",
+ "required": true,
+ "in": "path",
+ "description": "Organization slug",
+ "schema": { "pattern": "^[\\w-]+$", "type": "string" }
+ },
+ {
+ "name": "offset",
+ "required": false,
+ "in": "query",
+ "description": "Number of projects to skip",
+ "schema": { "minimum": 0, "default": 0, "type": "integer" }
+ },
+ {
+ "name": "limit",
+ "required": false,
+ "in": "query",
+ "description": "Number of projects to return per page",
+ "schema": { "minimum": 1, "maximum": 100, "default": 100, "type": "integer" }
+ },
+ {
+ "name": "search",
+ "required": false,
+ "in": "query",
+ "description": "Search projects by name",
+ "schema": { "type": "string" }
+ },
+ {
+ "name": "sort",
+ "required": false,
+ "in": "query",
+ "description": "Sort order for projects",
+ "schema": {
+ "default": "name_asc",
+ "type": "string",
+ "enum": ["name_asc", "name_desc", "created_asc", "created_desc"]
+ }
+ },
+ {
+ "name": "statuses",
+ "required": false,
+ "in": "query",
+ "description": "A comma-separated list of project statuses to filter by.\n\nThe following values are supported: `ACTIVE_HEALTHY`, `INACTIVE`.",
+ "schema": { "example": "?statuses=ACTIVE_HEALTHY,INACTIVE", "type": "string" }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "",
+ "content": {
+ "application/json": {
+ "schema": { "$ref": "#/components/schemas/OrganizationProjectsResponse" }
+ }
+ }
+ },
+ "500": { "description": "Failed to retrieve projects" }
+ },
+ "security": [{ "bearer": [] }],
+ "summary": "Gets all projects for the given organization",
+ "tags": ["Projects"]
+ }
}
},
"info": {
@@ -5095,6 +5427,92 @@
},
"required": ["workflow_run_id", "message"]
},
+ "V1ListProjectsPaginatedResponse": {
+ "type": "object",
+ "properties": {
+ "projects": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": { "type": "number" },
+ "cloud_provider": { "type": "string" },
+ "inserted_at": { "type": "string", "nullable": true },
+ "name": { "type": "string" },
+ "organization_id": { "type": "number" },
+ "organization_slug": { "type": "string" },
+ "ref": { "type": "string" },
+ "region": { "type": "string" },
+ "status": { "type": "string" },
+ "subscription_id": { "type": "string", "nullable": true },
+ "is_branch_enabled": { "type": "boolean" },
+ "is_physical_backups_enabled": { "type": "boolean", "nullable": true },
+ "preview_branch_refs": { "type": "array", "items": { "type": "string" } },
+ "disk_volume_size_gb": { "type": "number" },
+ "infra_compute_size": {
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "cloud_provider",
+ "inserted_at",
+ "name",
+ "organization_id",
+ "organization_slug",
+ "ref",
+ "region",
+ "status",
+ "subscription_id",
+ "is_branch_enabled",
+ "is_physical_backups_enabled",
+ "preview_branch_refs"
+ ]
+ }
+ },
+ "pagination": {
+ "type": "object",
+ "properties": {
+ "count": {
+ "type": "number",
+ "description": "Total number of projects. Use this to calculate the total number of pages."
+ },
+ "limit": {
+ "type": "number",
+ "description": "Maximum number of projects per page (actual number may be less)"
+ },
+ "offset": {
+ "type": "number",
+ "description": "Number of projects skipped in this response"
+ }
+ },
+ "required": ["count", "limit", "offset"]
+ }
+ },
+ "required": ["projects", "pagination"]
+ },
"V1ProjectWithDatabaseResponse": {
"type": "object",
"properties": {
@@ -6355,6 +6773,11 @@
"connected_cluster": { "type": "integer" }
},
"required": ["healthy", "db_connected", "connected_cluster"]
+ },
+ {
+ "type": "object",
+ "properties": { "db_schema": { "type": "string" } },
+ "required": ["db_schema"]
}
]
},
@@ -6621,7 +7044,9 @@
"track_commit_timestamp": { "type": "boolean" },
"wal_keep_size": { "type": "string" },
"wal_sender_timeout": { "type": "string" },
- "work_mem": { "type": "string" }
+ "work_mem": { "type": "string" },
+ "checkpoint_timeout": { "type": "integer", "minimum": 30, "maximum": 86400 },
+ "hot_standby_feedback": { "type": "boolean" }
}
},
"UpdatePostgresConfigBody": {
@@ -6650,6 +7075,8 @@
"wal_keep_size": { "type": "string" },
"wal_sender_timeout": { "type": "string" },
"work_mem": { "type": "string" },
+ "checkpoint_timeout": { "type": "integer", "minimum": 30, "maximum": 86400 },
+ "hot_standby_feedback": { "type": "boolean" },
"restart_database": { "type": "boolean" }
},
"additionalProperties": false
@@ -8120,6 +8547,7 @@
"type": "object",
"properties": {
"query": { "type": "string", "minLength": 1 },
+ "parameters": { "type": "array", "items": {} },
"read_only": { "type": "boolean" }
},
"required": ["query"]
@@ -8946,7 +9374,7 @@
"type": "object",
"properties": {
"name": { "type": "string" },
- "status": { "type": "string", "enum": ["AVAILABLE", "PENDING", "REMOVED"] }
+ "status": { "type": "string", "enum": ["AVAILABLE", "PENDING", "REMOVED", "FAILED"] }
},
"required": ["name", "status"]
},
@@ -9062,6 +9490,130 @@
"created_by": { "type": "string", "format": "uuid" }
},
"required": ["project", "preview", "expires_at", "created_at", "created_by"]
+ },
+ "OrganizationProjectsResponse": {
+ "type": "object",
+ "properties": {
+ "projects": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "ref": { "type": "string" },
+ "name": { "type": "string" },
+ "cloud_provider": { "type": "string" },
+ "region": { "type": "string" },
+ "is_branch": { "type": "boolean" },
+ "status": {
+ "type": "string",
+ "enum": [
+ "INACTIVE",
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "UNKNOWN",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UPGRADING",
+ "PAUSING",
+ "RESTORE_FAILED",
+ "RESTARTING",
+ "PAUSE_FAILED",
+ "RESIZING"
+ ]
+ },
+ "inserted_at": { "type": "string" },
+ "databases": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "infra_compute_size": {
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ },
+ "region": { "type": "string" },
+ "status": {
+ "type": "string",
+ "enum": [
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UNKNOWN",
+ "INIT_READ_REPLICA",
+ "INIT_READ_REPLICA_FAILED",
+ "RESTARTING",
+ "RESIZING"
+ ]
+ },
+ "cloud_provider": { "type": "string" },
+ "identifier": { "type": "string" },
+ "type": { "type": "string", "enum": ["PRIMARY", "READ_REPLICA"] },
+ "disk_volume_size_gb": { "type": "number" },
+ "disk_type": { "type": "string", "enum": ["gp3", "io2"] },
+ "disk_throughput_mbps": { "type": "number" },
+ "disk_last_modified_at": { "type": "string" }
+ },
+ "required": ["region", "status", "cloud_provider", "identifier", "type"]
+ }
+ }
+ },
+ "required": [
+ "ref",
+ "name",
+ "cloud_provider",
+ "region",
+ "is_branch",
+ "status",
+ "inserted_at",
+ "databases"
+ ]
+ }
+ },
+ "pagination": {
+ "type": "object",
+ "properties": {
+ "count": {
+ "type": "number",
+ "description": "Total number of projects. Use this to calculate the total number of pages."
+ },
+ "limit": { "type": "number", "description": "Maximum number of projects per page" },
+ "offset": {
+ "type": "number",
+ "description": "Number of projects skipped in this response"
+ }
+ },
+ "required": ["count", "limit", "offset"]
+ }
+ },
+ "required": ["projects", "pagination"]
}
}
}
diff --git a/apps/docs/spec/cli_v1_commands.yaml b/apps/docs/spec/cli_v1_commands.yaml
index a0e6dca64e672..05f92d1eccf47 100644
--- a/apps/docs/spec/cli_v1_commands.yaml
+++ b/apps/docs/spec/cli_v1_commands.yaml
@@ -78,7 +78,7 @@ flags:
name: --workdir
description: path to a Supabase project directory
default_value: ''
- - id: "yes"
+ - id: 'yes'
name: --yes
description: answer yes to all prompts
default_value: 'false'
diff --git a/apps/docs/spec/common-api-sections.json b/apps/docs/spec/common-api-sections.json
index fdeac8e1757f1..352e903170ca3 100644
--- a/apps/docs/spec/common-api-sections.json
+++ b/apps/docs/spec/common-api-sections.json
@@ -670,6 +670,12 @@
"slug": "v1-delete-network-bans",
"type": "operation"
},
+ {
+ "id": "v1-get-all-projects-for-organization",
+ "title": "Get all projects for organization",
+ "slug": "v1-get-all-projects-for-organization",
+ "type": "operation"
+ },
{
"id": "v1-get-available-regions",
"title": "Get available regions",
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/combined.json b/apps/docs/spec/enrichments/tsdoc_v2/combined.json
index 29c964af6aca1..7c2277b16e822 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/combined.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/combined.json
@@ -9,1312 +9,1006 @@
"flags": {},
"children": [
{
- "id": 11,
- "name": "SupabaseClient",
+ "id": 96,
+ "name": "FunctionRegion",
"variant": "declaration",
- "kind": 128,
+ "kind": 8,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Supabase Client.\n\nAn isomorphic Javascript client for interacting with Postgres."
+ "children": [
+ {
+ "id": 97,
+ "name": "Any",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 30,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "any"
}
- ]
- },
+ },
+ {
+ "id": 98,
+ "name": "ApNortheast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 31,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-northeast-1"
+ }
+ },
+ {
+ "id": 99,
+ "name": "ApNortheast2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-northeast-2"
+ }
+ },
+ {
+ "id": 100,
+ "name": "ApSouth1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 33,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-south-1"
+ }
+ },
+ {
+ "id": 101,
+ "name": "ApSoutheast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-southeast-1"
+ }
+ },
+ {
+ "id": 102,
+ "name": "ApSoutheast2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-southeast-2"
+ }
+ },
+ {
+ "id": 103,
+ "name": "CaCentral1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ca-central-1"
+ }
+ },
+ {
+ "id": 104,
+ "name": "EuCentral1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 37,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-central-1"
+ }
+ },
+ {
+ "id": 105,
+ "name": "EuWest1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-1"
+ }
+ },
+ {
+ "id": 106,
+ "name": "EuWest2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-2"
+ }
+ },
+ {
+ "id": 107,
+ "name": "EuWest3",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 40,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-3"
+ }
+ },
+ {
+ "id": 108,
+ "name": "SaEast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 41,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sa-east-1"
+ }
+ },
+ {
+ "id": 109,
+ "name": "UsEast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 42,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-east-1"
+ }
+ },
+ {
+ "id": 110,
+ "name": "UsWest1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 43,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-west-1"
+ }
+ },
+ {
+ "id": 111,
+ "name": "UsWest2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 44,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-west-2"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 29,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2118,
+ "name": "REALTIME_LISTEN_TYPES",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
"children": [
{
- "id": 12,
- "name": "constructor",
+ "id": 2119,
+ "name": "BROADCAST",
"variant": "declaration",
- "kind": 512,
+ "kind": 16,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 105,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 123,
+ "character": 4
}
],
- "signatures": [
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 2121,
+ "name": "POSTGRES_CHANGES",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
{
- "id": 13,
- "name": "SupabaseClient",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Create a new client for use in the browser."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 105,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L105"
- }
- ],
- "typeParameters": [
- {
- "id": 14,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- {
- "id": 15,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 16,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 17,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [17]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ]
- }
- }
- ]
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- }
- }
- },
- {
- "id": 18,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "typeArguments": [
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- }
- }
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 125,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 2120,
+ "name": "PRESENCE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 124,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 2122,
+ "name": "SYSTEM",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2119, 2121, 2120, 2122]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 122,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2123,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2124,
+ "name": "ALL",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "*"
+ }
+ },
+ {
+ "id": 2127,
+ "name": "DELETE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 120,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ },
+ {
+ "id": 2125,
+ "name": "INSERT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 118,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ },
+ {
+ "id": 2126,
+ "name": "UPDATE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 119,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2124, 2127, 2125, 2126]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 116,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2128,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2130,
+ "name": "JOIN",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 31,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ },
+ {
+ "id": 2131,
+ "name": "LEAVE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ },
+ {
+ "id": 2129,
+ "name": "SYNC",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 30,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2130, 2131, 2129]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 29,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2132,
+ "name": "REALTIME_SUBSCRIBE_STATES",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2136,
+ "name": "CHANNEL_ERROR",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 132,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CHANNEL_ERROR"
+ }
+ },
+ {
+ "id": 2135,
+ "name": "CLOSED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 131,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CLOSED"
+ }
+ },
+ {
+ "id": 2133,
+ "name": "SUBSCRIBED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 129,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "SUBSCRIBED"
+ }
+ },
+ {
+ "id": 2134,
+ "name": "TIMED_OUT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "TIMED_OUT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2136, 2135, 2133, 2134]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 128,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 1434,
+ "name": "AuthApiError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1435,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1436,
+ "name": "AuthApiError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1437,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 19,
- "name": "Schema",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1438,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "intrinsic",
- "name": "any"
- },
- "objectType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 20,
- "name": "ClientOptions",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1439,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
"type": {
- "type": "reflection",
- "declaration": {
- "id": 21,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 22,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [22]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ]
- }
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- },
- "trueType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 23,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 24,
- "name": "__InternalSupabase",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 25,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 26,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [26]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [24]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "__InternalSupabase"
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- ],
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "falseType": {
- "type": "reflection",
- "declaration": {
- "id": 27,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 28,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
- }
- ],
- "type": {
- "type": "literal",
- "value": "12"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [28]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
- }
- ]
- }
- }
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 29,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 30,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [30]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ]
- }
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "typeArguments": [
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- }
- }
- }
- ],
- "parameters": [
- {
- "id": 31,
- "name": "supabaseUrl",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
+ "type": "union",
+ "types": [
{
- "kind": "text",
- "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 32,
- "name": "supabaseKey",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
+ "type": "intrinsic",
+ "name": "undefined"
+ },
{
- "kind": "text",
- "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ "type": "intrinsic",
+ "name": "string"
}
]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 33,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": 138,
- "typeArguments": [
- {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClientOptions",
- "package": "@supabase/supabase-js",
- "highlightedProperties": {
- "realtime": [
- {
- "kind": "text",
- "text": "Options passed along to realtime-js constructor."
- }
- ],
- "storage": [
- {
- "kind": "text",
- "text": "Options passed along to the storage-js constructor."
- }
- ]
- }
}
}
],
"type": {
"type": "reference",
- "target": 11,
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClient",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default"
+ "target": 1434,
+ "name": "AuthApiError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
+ }
},
{
- "id": 52,
- "name": "accessToken",
+ "id": 1443,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
"flags": {
"isProtected": true,
- "isOptional": true
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 53,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
- }
- ],
- "signatures": [
- {
- "id": 54,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
}
},
{
- "id": 34,
- "name": "auth",
+ "id": 1441,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isInherited": true
+ },
"comment": {
"summary": [
{
"kind": "text",
- "text": "Supabase Auth allows you to create and manage user sessions for access to data that is secured by access policies."
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 73,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L73"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/SupabaseAuthClient.ts",
- "qualifiedName": "SupabaseAuthClient"
- },
- "name": "SupabaseAuthClient",
- "package": "@supabase/supabase-js"
- }
- },
- {
- "id": 38,
- "name": "authUrl",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isProtected": true
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 81,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1442,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "target": 1430,
+ "name": "AuthError.code"
}
},
{
- "id": 51,
- "name": "changedAccessToken",
+ "id": 1440,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isProtected": true,
- "isOptional": true
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 87,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 18,
+ "character": 4
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
}
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1435]
},
{
- "id": 43,
- "name": "fetch",
+ "title": "Properties",
+ "children": [1443, 1441, 1440]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 17,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1424,
+ "name": "AuthError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1425,
+ "name": "constructor",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isProtected": true,
- "isOptional": true
- },
+ "kind": 512,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 86,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 14,
+ "character": 4
}
],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 44,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "signatures": [
+ {
+ "id": 1426,
+ "name": "AuthError",
+ "variant": "signature",
+ "kind": 16384,
"flags": {},
"sources": [
{
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- },
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 14,
+ "character": 4
}
],
- "signatures": [
+ "parameters": [
{
- "id": 45,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "id": 1427,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1428,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
},
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- }
- ],
- "parameters": [
- {
- "id": 46,
- "name": "input",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
- },
- "name": "RequestInfo",
- "package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
- ]
- }
- },
- {
- "id": 47,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
- }
- }
- ],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 48,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
+ "id": 1429,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
},
- "sources": [
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
- }
- ],
- "parameters": [
- {
- "id": 49,
- "name": "input",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
- },
- "name": "Request",
- "package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
- ]
- }
- },
- {
- "id": 50,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
- }
- }
- ],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "string"
}
}
- ]
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
}
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
}
},
{
- "id": 40,
- "name": "functionsUrl",
+ "id": 1433,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
"flags": {
@@ -1322,1650 +1016,1825 @@
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 83,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "boolean"
}
},
{
- "id": 55,
- "name": "headers",
+ "id": 1430,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isProtected": true
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 90,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
+ "type": "union",
+ "types": [
{
"type": "intrinsic",
- "name": "string"
+ "name": "undefined"
},
{
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1431,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
}
- ],
- "name": "Record",
- "package": "typescript"
+ ]
}
},
{
- "id": 35,
- "name": "realtime",
+ "id": 1432,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 74,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 12,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeClient",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
}
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1425]
},
{
- "id": 37,
- "name": "realtimeUrl",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isProtected": true
+ "title": "Properties",
+ "children": [1433, 1430, 1432]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 3,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 80,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L80"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
+ "name": "Error",
+ "package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 1434,
+ "name": "AuthApiError"
},
{
- "id": 41,
- "name": "rest",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isProtected": true
- },
+ "type": "reference",
+ "target": 1444,
+ "name": "AuthUnknownError"
+ },
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError"
+ }
+ ]
+ },
+ {
+ "id": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1492,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 84,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 4
}
],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestClient.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
+ "signatures": [
+ {
+ "id": 1493,
+ "name": "AuthImplicitGrantRedirectError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1494,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1495,
+ "name": "details",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1496,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1498,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 48,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1497,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 47,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1498, 1497]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 43
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
"type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "package": "@supabase/auth-js"
},
- {
+ "overwrites": {
"type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
- ],
- "name": "PostgrestClient",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
}
},
{
- "id": 36,
- "name": "storage",
+ "id": 1517,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Supabase Storage allows you to manage user-generated content, such as photos or videos."
- }
- ]
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 78,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../storage-js/src/StorageClient.ts",
- "qualifiedName": "StorageClient"
- },
- "name": "StorageClient",
- "package": "@supabase/storage-js"
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 42,
- "name": "storageKey",
+ "id": 1515,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 85,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1516,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
}
},
{
- "id": 39,
- "name": "storageUrl",
+ "id": 1499,
+ "name": "details",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isProtected": true
- },
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 82,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 42,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1500,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1502,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 44,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1501,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 43,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1502, 1501]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 42,
+ "character": 13
+ }
+ ]
+ }
+ }
+ ]
}
},
{
- "id": 57,
- "name": "supabaseKey",
+ "id": 1513,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
- }
- ]
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 107,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L107"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 56,
- "name": "supabaseUrl",
+ "id": 1514,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ "text": "HTTP status code that caused the error."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 106,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L106"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
],
"type": {
"type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 58,
- "name": "functions",
- "variant": "declaration",
- "kind": 262144,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 180,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L180"
- }
- ],
- "getSignature": {
- "id": 59,
- "name": "functions",
- "variant": "signature",
- "kind": 524288,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Supabase Functions allows you to deploy and invoke edge functions."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 180,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L180"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/functions-js/src/FunctionsClient.ts",
- "qualifiedName": "FunctionsClient"
- },
- "name": "FunctionsClient",
- "package": "@supabase/functions-js"
- }
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
}
},
{
- "id": 85,
- "name": "channel",
+ "id": 1503,
+ "name": "toJSON",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 294,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 4
}
],
"signatures": [
{
- "id": 86,
- "name": "channel",
+ "id": 1504,
+ "name": "toJSON",
"variant": "signature",
"kind": 4096,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 294,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 4
}
],
- "parameters": [
- {
- "id": 87,
- "name": "name",
- "variant": "param",
- "kind": 32768,
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1505,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the Realtime channel."
+ "children": [
+ {
+ "id": 1509,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 54,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1510,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1512,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 56,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1511,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 55,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1512, 1511]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 54,
+ "character": 17
+ }
+ ]
+ }
+ }
+ ]
}
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 88,
- "name": "opts",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The options to pass to the Realtime channel."
+ },
+ {
+ "id": 1507,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 52,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "RealtimeChannelOptions"
},
- "name": "RealtimeChannelOptions",
- "package": "@supabase/realtime-js"
- },
- "defaultValue": "..."
+ {
+ "id": 1506,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 51,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1508,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 53,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1509, 1507, 1506, 1508]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ]
}
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
}
}
]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1492]
},
{
- "id": 60,
- "name": "from",
+ "title": "Properties",
+ "children": [1517, 1515, 1499, 1513, 1514]
+ },
+ {
+ "title": "Methods",
+ "children": [1503]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 41,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1482,
+ "name": "AuthInvalidCredentialsError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1483,
+ "name": "constructor",
"variant": "declaration",
- "kind": 2048,
+ "kind": 512,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Perform a query on a table or a view."
- }
- ],
- "blockTags": [
- {
- "tag": "@param",
- "name": "relation",
- "content": [
- {
- "kind": "text",
- "text": "The table or view name to query"
- }
- ]
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 188,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L188"
- },
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 192,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L192"
- },
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 200,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L200"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 39,
+ "character": 4
}
],
"signatures": [
{
- "id": 61,
- "name": "from",
+ "id": 1484,
+ "name": "AuthInvalidCredentialsError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 188,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L188"
- }
- ],
- "typeParameters": [
- {
- "id": 62,
- "name": "TableName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 63,
- "name": "Table",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericTable"
- },
- "name": "GenericTable",
- "package": "@supabase/supabase-js"
- }
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 39,
+ "character": 4
}
],
"parameters": [
{
- "id": 64,
- "name": "relation",
+ "id": 1485,
+ "name": "message",
"variant": "param",
"kind": 32768,
"flags": {},
- "type": {
- "type": "reference",
- "target": 62,
- "name": "TableName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestQueryBuilder.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 63,
- "name": "Table",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 62,
- "name": "TableName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "PostgrestQueryBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 65,
- "name": "from",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 192,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L192"
- }
- ],
- "typeParameters": [
- {
- "id": 66,
- "name": "ViewName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
"type": {
"type": "intrinsic",
"name": "string"
}
- },
- {
- "id": 67,
- "name": "View",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericView"
- },
- "name": "GenericView",
- "package": "@supabase/supabase-js"
- }
- }
- ],
- "parameters": [
- {
- "id": 68,
- "name": "relation",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 66,
- "name": "ViewName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestQueryBuilder.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 67,
- "name": "View",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 66,
- "name": "ViewName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "PostgrestQueryBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ "target": 1482,
+ "name": "AuthInvalidCredentialsError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
{
- "id": 89,
- "name": "getChannels",
+ "id": 1490,
+ "name": "__isAuthError",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 301,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
- "signatures": [
- {
- "id": 90,
- "name": "getChannels",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns all Realtime channels."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 301,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L301"
- }
- ],
- "type": {
- "type": "array",
- "elementType": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- }
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
},
{
- "id": 94,
- "name": "removeAllChannels",
+ "id": 1488,
+ "name": "code",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 318,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
- "signatures": [
- {
- "id": 95,
- "name": "removeAllChannels",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unsubscribes and removes all Realtime channels from Realtime client."
- }
- ]
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 318,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L318"
- }
- ],
- "type": {
+ {
"type": "reference",
"target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "array",
- "elementType": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1489,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
}
}
- ],
- "name": "Promise",
- "package": "typescript"
+ ]
}
- }
- ]
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
},
{
- "id": 91,
- "name": "removeChannel",
+ "id": 1486,
+ "name": "name",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 311,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1487,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1483]
+ },
+ {
+ "title": "Properties",
+ "children": [1490, 1488, 1486, 1487]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 38,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1567,
+ "name": "AuthInvalidJwtError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1568,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 98,
+ "character": 4
}
],
"signatures": [
{
- "id": 92,
- "name": "removeChannel",
+ "id": 1569,
+ "name": "AuthInvalidJwtError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unsubscribes and removes Realtime channel from Realtime client."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 311,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 98,
+ "character": 4
}
],
"parameters": [
{
- "id": 93,
- "name": "channel",
+ "id": 1570,
+ "name": "message",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the Realtime channel."
- }
- ]
- },
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"type": {
+ "type": "reference",
+ "target": 1567,
+ "name": "AuthInvalidJwtError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1575,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1573,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
"type": "reference",
"target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1574,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- ],
- "name": "Promise",
- "package": "typescript"
+ ]
}
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1571,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
- ]
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
},
{
- "id": 73,
- "name": "rpc",
+ "id": 1572,
+ "name": "status",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1568]
+ },
+ {
+ "title": "Properties",
+ "children": [1575, 1573, 1571, 1572]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 97,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1474,
+ "name": "AuthInvalidTokenResponseError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1475,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 247,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 36,
+ "character": 4
}
],
"signatures": [
{
- "id": 74,
- "name": "rpc",
+ "id": 1476,
+ "name": "AuthInvalidTokenResponseError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Perform a function call."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 247,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 36,
+ "character": 4
}
],
- "typeParameters": [
- {
- "id": 75,
- "name": "FnName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": {
+ "type": "reference",
+ "target": 1474,
+ "name": "AuthInvalidTokenResponseError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1481,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1479,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- {
- "id": 76,
- "name": "Args",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "unknown"
- }
- ],
- "name": "Record",
- "package": "typescript"
- },
- "default": {
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
"type": "intrinsic",
- "name": "never"
- }
- },
- {
- "id": 77,
- "name": "FilterBuilder",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/rpc.ts",
- "qualifiedName": "RpcFunctionNotFound"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RpcFunctionNotFound",
- "package": "@supabase/supabase-js"
+ "name": "string"
},
- "default": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/rpc.ts",
- "qualifiedName": "GetRpcFunctionFilterBuilderByArgs"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 76,
- "name": "Args",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "GetRpcFunctionFilterBuilderByArgs",
- "package": "@supabase/supabase-js"
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1480,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1477,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1478,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1475]
+ },
+ {
+ "title": "Properties",
+ "children": [1481, 1479, 1477, 1478]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 35,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1519,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1520,
+ "name": "AuthPKCEGrantCodeExchangeError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 4
+ }
],
"parameters": [
{
- "id": 78,
- "name": "fn",
+ "id": 1521,
+ "name": "message",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The function name to call"
- }
- ]
- },
"type": {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 79,
- "name": "args",
+ "id": 1522,
+ "name": "details",
"variant": "param",
"kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The arguments to pass to the function call"
- }
- ]
+ "flags": {
+ "isOptional": true
},
"type": {
- "type": "reference",
- "target": 76,
- "name": "Args",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "defaultValue": "..."
- },
- {
- "id": 80,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
+ "type": "union",
+ "types": [
{
- "kind": "text",
- "text": "Named parameters"
- }
- ]
- },
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 81,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 84,
- "name": "count",
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1523,
+ "name": "__type",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Count algorithm to use to count rows returned by the\nfunction. Only applicable for [set-returning\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\n\n"
- },
- {
- "kind": "code",
- "text": "`\"exact\"`"
- },
- {
- "kind": "text",
- "text": ": Exact but slow count algorithm. Performs a "
- },
- {
- "kind": "code",
- "text": "`COUNT(*)`"
- },
- {
- "kind": "text",
- "text": " under the\nhood.\n\n"
- },
- {
- "kind": "code",
- "text": "`\"planned\"`"
- },
- {
- "kind": "text",
- "text": ": Approximated but fast count algorithm. Uses the Postgres\nstatistics under the hood.\n\n"
- },
- {
- "kind": "code",
- "text": "`\"estimated\"`"
- },
- {
- "kind": "text",
- "text": ": Uses exact count for low numbers and planned count for high\nnumbers."
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1525,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 68,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "sources": [
+ },
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 261,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ "id": 1524,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 67,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- }
- },
- {
- "id": 83,
- "name": "get",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When set to "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": ", the function will be called with\nread-only access mode."
- }
- ]
- },
- "sources": [
+ "groups": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 260,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L260"
+ "title": "Properties",
+ "children": [1525, 1524]
}
],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 82,
- "name": "head",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When set to "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": ", "
- },
- {
- "kind": "code",
- "text": "`data`"
- },
- {
- "kind": "text",
- "text": " will not be returned.\nUseful if you only need the count."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 259,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L259"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 43
}
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [84, 83, 82]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 258,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L258"
+ ]
}
- ]
- }
- },
- "defaultValue": "..."
+ }
+ ]
+ }
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestFilterBuilder.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Row"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Result"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "RelationName"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Relationships"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "RPC"
- }
- ],
- "name": "PostgrestFilterBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ "target": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
{
- "id": 69,
- "name": "schema",
+ "id": 1544,
+ "name": "__isAuthError",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 212,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
- "signatures": [
- {
- "id": 70,
- "name": "schema",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Select a schema to query or perform an function (rpc) call.\n\nThe schema needs to be on the list of exposed schemas inside Supabase."
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1542,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 212,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L212"
- }
- ],
- "typeParameters": [
- {
- "id": 71,
- "name": "DynamicSchema",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "parameters": [
- {
- "id": 72,
- "name": "schema",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The schema to query"
- }
- ]
- },
- "type": {
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- }
- ],
- "type": {
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
"type": "reference",
"target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestClient.ts",
- "qualifiedName": "default"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
},
{
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "intrinsic",
- "name": "any"
- },
- "objectType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "any"
+ "type": "reflection",
+ "declaration": {
+ "id": 1543,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
}
}
- ],
- "name": "PostgrestClient",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ ]
}
- }
- ]
- }
- ],
- "groups": [
- {
- "title": "Constructors",
- "children": [12]
- },
- {
- "title": "Properties",
- "children": [52, 34, 38, 51, 43, 40, 55, 35, 37, 41, 36, 42, 39, 57, 56]
- },
- {
- "title": "Accessors",
- "children": [58]
- },
- {
- "title": "Methods",
- "children": [85, 60, 89, 94, 91, 73, 69]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 37,
- "character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L37"
- }
- ],
- "typeParameters": [
- {
- "id": 121,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "any"
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
}
},
{
- "id": 122,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1526,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 62,
+ "character": 4
+ }
+ ],
"type": {
"type": "union",
"types": [
{
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- }
- ]
+ "type": "literal",
+ "value": null
},
{
"type": "reflection",
"declaration": {
- "id": 123,
+ "id": 1527,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 124,
- "name": "PostgrestVersion",
+ "id": 1529,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1528,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 63,
+ "character": 8
}
],
"type": {
@@ -2977,3263 +2846,57807 @@
"groups": [
{
"title": "Properties",
- "children": [124]
+ "children": [1529, 1528]
}
],
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 62,
+ "character": 13
}
]
}
}
]
+ }
+ },
+ {
+ "id": 1540,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- }
- ]
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 125,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
+ "id": 1541,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
}
]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ },
+ {
+ "id": 1530,
+ "name": "toJSON",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1531,
+ "name": "toJSON",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 4
}
- ]
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1532,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
{
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- }
- ]
- }
- }
- }
- },
- {
- "id": 126,
- "name": "Schema",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- }
- },
- {
- "id": 127,
- "name": "ClientOptions",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 128,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 129,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [129]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ]
- }
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- }
- ]
- },
- "trueType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 130,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 131,
- "name": "__InternalSupabase",
+ "id": 1536,
+ "name": "details",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 74,
+ "character": 8
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 132,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 133,
- "name": "PostgrestVersion",
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1537,
+ "name": "__type",
"variant": "declaration",
- "kind": 1024,
+ "kind": 65536,
"flags": {},
- "sources": [
+ "children": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "id": 1539,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 76,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1538,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 75,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [133]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1539, 1538]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 74,
+ "character": 17
+ }
+ ]
}
- ]
- }
+ }
+ ]
}
- }
- ],
- "groups": [
+ },
{
- "title": "Properties",
- "children": [131]
- }
- ],
- "sources": [
+ "id": 1534,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 72,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "__InternalSupabase"
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "falseType": {
- "type": "reflection",
- "declaration": {
- "id": 134,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
+ "id": 1533,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 71,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
- "id": 135,
- "name": "PostgrestVersion",
+ "id": 1535,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 73,
+ "character": 8
}
],
"type": {
- "type": "literal",
- "value": "12"
+ "type": "intrinsic",
+ "name": "number"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [135]
+ "children": [1536, 1534, 1533, 1535]
}
],
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 14
}
]
}
}
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 136,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 137,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [137]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ]
- }
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
}
- }
+ ]
}
- ]
- },
- {
- "id": 166,
- "name": "QueryData",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
+ ],
+ "groups": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
+ "title": "Constructors",
+ "children": [1519]
+ },
+ {
+ "title": "Properties",
+ "children": [1544, 1542, 1526, 1540, 1541]
+ },
+ {
+ "title": "Methods",
+ "children": [1530]
}
],
- "typeParameters": [
+ "sources": [
{
- "id": 169,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 61,
+ "character": 21
}
],
- "type": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 169,
- "name": "T",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "extendsType": {
+ "extendedTypes": [
+ {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1545,
+ "name": "AuthRetryableFetchError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1546,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
{
- "type": "reflection",
- "declaration": {
- "id": 167,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 168,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
- }
- ],
- "type": {
- "type": "inferred",
- "name": "U"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [168]
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1547,
+ "name": "AuthRetryableFetchError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1548,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
+ },
+ {
+ "id": 1549,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
- ]
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1545,
+ "name": "AuthRetryableFetchError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
],
- "name": "PromiseLike",
- "package": "typescript"
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
- "trueType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
+ {
+ "id": 1554,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
},
- "typeArguments": [
+ "sources": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "U"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1552,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
},
- "name": "U",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
{
- "type": "literal",
- "value": null
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
- "name": "Exclude",
- "package": "typescript"
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1553,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
},
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- }
- },
- {
- "id": 170,
- "name": "QueryError",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 116,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L116"
+ "id": 1550,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1551,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
}
],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestError.ts",
- "qualifiedName": "default"
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1546]
},
- "name": "PostgrestError",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 164,
- "name": "QueryResult",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Helper types for query results."
- }
- ]
- },
- "sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 114,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L114"
+ "title": "Properties",
+ "children": [1554, 1552, 1550, 1551]
}
],
- "typeParameters": [
+ "sources": [
{
- "id": 165,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 80,
+ "character": 21
}
],
- "type": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 165,
- "name": "T",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
- {
- "type": "inferred",
- "name": "U"
- }
- ],
- "name": "PromiseLike",
- "package": "typescript"
- },
- "trueType": {
+ "extendedTypes": [
+ {
"type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "U"
- },
- "name": "U",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
}
- }
+ ]
},
{
- "id": 138,
- "name": "SupabaseClientOptions",
+ "id": 1466,
+ "name": "AuthSessionMissingError",
"variant": "declaration",
- "kind": 2097152,
+ "kind": 128,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 30,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L30"
- }
- ],
- "typeParameters": [
+ "children": [
{
- "id": 163,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 139,
- "name": "__type",
+ "id": 1467,
+ "name": "constructor",
"variant": "declaration",
- "kind": 65536,
+ "kind": 512,
"flags": {},
- "children": [
+ "sources": [
{
- "id": 160,
- "name": "accessToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional function for using a third-party authentication system with\nSupabase. The function should return an access token or ID token (JWT) by\nobtaining it from the third-party auth client library. Note that this\nfunction may be called concurrently and many times. Use memoization and\nlocking techniques if this is not supported by the client libraries.\n\nWhen set, the "
- },
- {
- "kind": "code",
- "text": "`auth`"
- },
- {
- "kind": "text",
- "text": " namespace of the Supabase client cannot be used.\nCreate another client if you wish to use Supabase Auth and third-party\nauthentications concurrently in the same application."
- }
- ]
- },
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1468,
+ "name": "AuthSessionMissingError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 108,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L108"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 32,
+ "character": 4
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 161,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 108,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L108"
- }
- ],
- "signatures": [
- {
- "id": 162,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "literal",
- "value": null
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
- }
+ "type": "reference",
+ "target": 1466,
+ "name": "AuthSessionMissingError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
- },
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1473,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 143,
- "name": "auth",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1471,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 38,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L38"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 144,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 145,
- "name": "autoRefreshToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Automatically refreshes the token for logged-in users. Defaults to true."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 42,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L42"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 152,
- "name": "debug",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 74,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L74"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "debug"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- },
- {
- "id": 148,
- "name": "detectSessionInUrl",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 54,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L54"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 151,
- "name": "flowType",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 70,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L70"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "flowType"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- },
- {
- "id": 153,
- "name": "lock",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
- }
- ],
- "modifierTags": ["@experimental"]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 80,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L80"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "lock"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- },
- {
- "id": 147,
- "name": "persistSession",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Whether to persist a logged-in session to storage. Defaults to true."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 50,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L50"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 149,
- "name": "storage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A storage provider. Used to store the logged-in session."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 58,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L58"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "storage"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- },
- {
- "id": 146,
- "name": "storageKey",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional key name used for storing tokens in local storage."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 46,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L46"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 150,
- "name": "userStorage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A storage provider to store the user profile separately from the session.\nUseful when you need to store the session information in cookies,\nwithout bloating the data with the redundant user object."
- }
- ],
- "modifierTags": ["@experimental"]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 66,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L66"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "userStorage"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [145, 152, 148, 151, 153, 147, 149, 146, 150]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 38,
- "character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L38"
- }
- ]
- }
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
- },
+ ]
+ },
+ "sources": [
{
- "id": 140,
- "name": "db",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to "
- },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "kind": "code",
- "text": "`public`"
+ "type": "intrinsic",
+ "name": "string"
},
{
- "kind": "text",
- "text": "."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 34,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L34"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 141,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 142,
- "name": "schema",
+ "type": "reflection",
+ "declaration": {
+ "id": 1472,
+ "name": "__type",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 35,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L35"
- }
- ],
- "type": {
- "type": "reference",
- "target": 163,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
+ "kind": 65536,
+ "flags": {}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [142]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 34,
- "character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L34"
- }
- ]
- }
+ }
+ ]
}
- },
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1469,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 156,
- "name": "global",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1470,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1467]
+ },
+ {
+ "title": "Properties",
+ "children": [1473, 1471, 1469, 1470]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 31,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1444,
+ "name": "AuthUnknownError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1445,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1446,
+ "name": "AuthUnknownError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 87,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L87"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 24,
+ "character": 4
}
],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 157,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "parameters": [
+ {
+ "id": 1447,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
- "children": [
- {
- "id": 158,
- "name": "fetch",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A custom "
- },
- {
- "kind": "code",
- "text": "`fetch`"
- },
- {
- "kind": "text",
- "text": " implementation."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 91,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L91"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Fetch"
- },
- "name": "Fetch",
- "package": "@supabase/supabase-js"
- }
- },
- {
- "id": 159,
- "name": "headers",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional headers for initializing the client."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 95,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L95"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ],
- "name": "Record",
- "package": "typescript"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [158, 159]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 87,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L87"
- }
- ]
- }
- }
- },
- {
- "id": 154,
- "name": "realtime",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Options passed to the realtime-js instance"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "sources": [
+ },
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 85,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L85"
+ "id": 1448,
+ "name": "originalError",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "RealtimeClientOptions"
- },
- "name": "RealtimeClientOptions",
- "package": "@supabase/realtime-js"
+ "target": 1444,
+ "name": "AuthUnknownError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
}
- },
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
+ }
+ },
+ {
+ "id": 1453,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 155,
- "name": "storage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1450,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 86,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L86"
- }
- ],
- "type": {
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
"type": "reference",
"target": {
- "sourceFileName": "../storage-js/src/StorageClient.ts",
- "qualifiedName": "StorageClientOptions"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "name": "StorageClientOptions",
- "package": "@supabase/storage-js"
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1451,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
}
- }
- ],
- "groups": [
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1430,
+ "name": "AuthError.code"
+ }
+ },
+ {
+ "id": 1449,
+ "name": "originalError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "title": "Properties",
- "children": [160, 143, 140, 156, 154, 155]
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 23,
+ "character": 4
}
],
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "id": 1452,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 30,
- "character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L30"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 12,
+ "character": 4
}
- ]
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
+ }
}
- }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1445]
+ },
+ {
+ "title": "Properties",
+ "children": [1453, 1450, 1449, 1452]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 22,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
},
{
- "id": 1,
- "name": "createClient",
+ "id": 1555,
+ "name": "AuthWeakPasswordError",
"variant": "declaration",
- "kind": 64,
+ "kind": 128,
"flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "Creates a new Supabase Client."
+ "text": "This error is thrown on certain methods when the password used is deemed\nweak. Inspect the reasons to identify what password strength rules are\ninadequate."
}
]
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 27,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L27"
- }
- ],
- "signatures": [
+ "children": [
{
- "id": 2,
- "name": "createClient",
- "variant": "signature",
- "kind": 4096,
+ "id": 1556,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 27,
- "character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L27"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 94,
+ "character": 4
}
],
- "typeParameters": [
- {
- "id": 3,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "any"
- }
- },
+ "signatures": [
{
- "id": 4,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1557,
+ "name": "AuthWeakPasswordError",
+ "variant": "signature",
+ "kind": 16384,
"flags": {},
- "type": {
- "type": "union",
- "types": [
- {
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1558,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
"type": "intrinsic",
"name": "string"
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 5,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 6,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 31,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L31"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [6]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 31,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L31"
- }
- ]
- }
}
- ]
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
},
- "trueType": {
- "type": "literal",
- "value": "public"
+ {
+ "id": 1559,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
},
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
+ {
+ "id": 1560,
+ "name": "reasons",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
+ "type": "literal",
+ "value": "length"
},
{
"type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- }
- }
- },
- {
- "id": 7,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
+ "value": "characters"
},
{
"type": "literal",
- "value": "__InternalSupabase"
+ "value": "pwned"
}
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- },
- "trueType": {
- "type": "reference",
- "target": 4,
- "typeArguments": [
- {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ ]
}
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
}
}
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1555,
+ "name": "AuthWeakPasswordError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
],
- "parameters": [
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1566,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 8,
- "name": "supabaseUrl",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1564,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
- },
+ ]
+ },
+ "sources": [
{
- "id": 9,
- "name": "supabaseKey",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
"type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 10,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
+ "name": "undefined"
},
- "type": {
+ {
"type": "reference",
- "target": 138,
- "typeArguments": [
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "reference",
- "target": 7,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1565,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- ],
- "name": "SupabaseClientOptions",
- "package": "@supabase/supabase-js"
+ ]
}
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1562,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
"type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": 11,
- "typeArguments": [
- {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1561,
+ "name": "reasons",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
{
- "type": "reference",
- "target": 7,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "kind": "text",
+ "text": "Reasons why the password is deemed weak."
}
- ],
- "name": "SupabaseClient",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default"
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 93,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "length"
+ },
+ {
+ "type": "literal",
+ "value": "characters"
+ },
+ {
+ "type": "literal",
+ "value": "pwned"
+ }
+ ]
+ }
}
- }
- ]
- }
- ],
- "groups": [
- {
- "title": "Classes",
- "children": [11]
- },
- {
- "title": "Type Aliases",
- "children": [166, 170, 164, 138]
- },
- {
- "title": "Functions",
- "children": [1]
- }
- ],
- "packageName": "@supabase/supabase-js",
- "readme": [
- {
- "kind": "text",
- "text": "# "
- },
- {
- "kind": "code",
- "text": "`supabase-js`"
- },
- {
- "kind": "text",
- "text": " - Isomorphic JavaScript Client for Supabase.\n\n- **Documentation:** https://supabase.com/docs/reference/javascript/start\n- TypeDoc: https://supabase.github.io/supabase-js/supabase-js/v2/spec.json\n\n\n\n[](https://pkg.pr.new/~/supabase/supabase-js)\n\n
\n\n## Usage\n\nFirst of all, you need to install the library:\n\n"
- },
- {
- "kind": "code",
- "text": "```sh\nnpm install @supabase/supabase-js\n```"
- },
- {
- "kind": "text",
- "text": "\n\nThen you're able to import the library and establish the connection with the database:\n\n"
+ },
+ {
+ "id": 1563,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1556]
+ },
+ {
+ "title": "Properties",
+ "children": [1566, 1564, 1562, 1561, 1563]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 89,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
},
{
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Create a single supabase client for interacting with your database\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\n```"
+ "id": 1454,
+ "name": "CustomAuthError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1455,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1456,
+ "name": "CustomAuthError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1457,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1458,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1459,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1460,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
+ }
+ },
+ {
+ "id": 1465,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1463,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1464,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1430,
+ "name": "AuthError.code"
+ }
+ },
+ {
+ "id": 1461,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "AuthError.name"
+ }
+ },
+ {
+ "id": 1462,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1455]
+ },
+ {
+ "title": "Properties",
+ "children": [1465, 1463, 1461, 1462]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 26,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 1466,
+ "name": "AuthSessionMissingError"
+ },
+ {
+ "type": "reference",
+ "target": 1474,
+ "name": "AuthInvalidTokenResponseError"
+ },
+ {
+ "type": "reference",
+ "target": 1482,
+ "name": "AuthInvalidCredentialsError"
+ },
+ {
+ "type": "reference",
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError"
+ },
+ {
+ "type": "reference",
+ "target": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError"
+ },
+ {
+ "type": "reference",
+ "target": 1545,
+ "name": "AuthRetryableFetchError"
+ },
+ {
+ "type": "reference",
+ "target": 1555,
+ "name": "AuthWeakPasswordError"
+ },
+ {
+ "type": "reference",
+ "target": 1567,
+ "name": "AuthInvalidJwtError"
+ }
+ ]
},
{
- "kind": "text",
- "text": "\n\n### UMD\n\nYou can use plain "
+ "id": 79,
+ "name": "FunctionsError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 80,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 81,
+ "name": "FunctionsError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 82,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 83,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 84,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ },
+ {
+ "id": 85,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [80]
+ },
+ {
+ "title": "Properties",
+ "children": [85]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 16,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 64,
+ "name": "FunctionsHttpError"
+ },
+ {
+ "type": "reference",
+ "target": 69,
+ "name": "FunctionsFetchError"
+ },
+ {
+ "type": "reference",
+ "target": 74,
+ "name": "FunctionsRelayError"
+ }
+ ]
},
{
- "kind": "code",
- "text": "`\n```"
- },
- {
- "kind": "text",
- "text": "\n\nor even:\n\n"
- },
- {
- "kind": "code",
- "text": "```html\n\n```"
- },
- {
- "kind": "text",
- "text": "\n\nThen you can use it from a global "
- },
- {
- "kind": "code",
- "text": "`supabase`"
- },
- {
- "kind": "text",
- "text": " variable:\n\n"
- },
- {
- "kind": "code",
- "text": "```html\n\n```"
- },
- {
- "kind": "text",
- "text": "\n\n### ESM\n\nYou can use "
- },
- {
- "kind": "code",
- "text": "`\n```"
- },
- {
- "kind": "text",
- "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
- },
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
- },
- {
- "kind": "text",
- "text": "\n\n### Custom "
- },
- {
- "kind": "code",
- "text": "`fetch`"
- },
- {
- "kind": "text",
- "text": " implementation\n\n"
- },
- {
- "kind": "code",
- "text": "`supabase-js`"
- },
- {
- "kind": "text",
- "text": " uses the ["
- },
- {
- "kind": "code",
- "text": "`cross-fetch`"
- },
- {
- "kind": "text",
- "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
- },
- {
- "kind": "code",
- "text": "`fetch`"
- },
- {
- "kind": "text",
- "text": " implementation can be provided as an option. This is most useful in environments where "
- },
- {
- "kind": "code",
- "text": "`cross-fetch`"
- },
- {
- "kind": "text",
- "text": " is not compatible, for instance Cloudflare Workers:\n\n"
- },
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
- },
- {
- "kind": "text",
- "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
- },
- {
- "kind": "code",
- "text": "`stable`"
- },
- {
- "kind": "text",
- "text": " and "
- },
- {
- "kind": "code",
- "text": "`lts`"
- },
- {
- "kind": "text",
- "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
- },
- {
- "kind": "code",
- "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
- },
- {
- "kind": "text",
- "text": "\n\n### Testing\n\n**Important:** The test suite includes tests for multiple runtime environments (Node.js, Deno, Bun, Expo, Next.js). Each environment has its own test runner and specific requirements.\n\n#### Prerequisites for All Integration Tests\n\n1. **Docker** must be installed and running\n2. **Supabase CLI** must be installed ("
- },
- {
- "kind": "code",
- "text": "`npm install -g supabase`"
- },
- {
- "kind": "text",
- "text": " or via package manager)\n3. **Local Supabase instance** must be started:\n\n"
- },
- {
- "kind": "code",
- "text": "```bash\n# Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# Start Supabase (downloads and starts all required containers)\nnpx supabase start\n\n# The output will show:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Studio URL: http://127.0.0.1:54323\n# - Anon key: [your-anon-key]\n# - Service role key: [your-service-role-key] # Important for some tests!\n\n# Return to monorepo root for running tests\ncd ../../..\n```"
- },
- {
- "kind": "text",
- "text": "\n\n#### Test Scripts Overview\n\n| Script | Description | Requirements |\n| -------------------------- | ----------------------------------------- | --------------------------------------- |\n| "
- },
- {
- "kind": "code",
- "text": "`test`"
- },
- {
- "kind": "text",
- "text": " | Runs unit tests + type checking | None |\n| "
- },
- {
- "kind": "code",
- "text": "`test:all`"
- },
- {
- "kind": "text",
- "text": " | Unit + integration + browser tests | Supabase running |\n| "
- },
- {
- "kind": "code",
- "text": "`test:run`"
- },
- {
- "kind": "text",
- "text": " | Jest unit tests only | None |\n| "
- },
- {
- "kind": "code",
- "text": "`test:unit`"
- },
- {
- "kind": "text",
- "text": " | Jest unit tests in test/unit directory | None |\n| "
- },
- {
- "kind": "code",
- "text": "`test:coverage`"
- },
- {
- "kind": "text",
- "text": " | Unit tests with coverage report | None |\n| "
- },
- {
- "kind": "code",
- "text": "`test:integration`"
- },
- {
- "kind": "text",
- "text": " | Node.js integration tests | Supabase running + SERVICE_ROLE_KEY |\n| "
- },
- {
- "kind": "code",
- "text": "`test:integration:browser`"
- },
- {
- "kind": "text",
- "text": " | Browser tests using Deno + Puppeteer | Supabase running + Deno installed |\n| "
- },
- {
- "kind": "code",
- "text": "`test:edge-functions`"
- },
- {
- "kind": "text",
- "text": " | Edge Functions tests | Supabase running + Deno installed |\n| "
- },
- {
- "kind": "code",
- "text": "`test:types`"
- },
- {
- "kind": "text",
- "text": " | TypeScript type checking + JSR validation | None |\n| "
- },
- {
- "kind": "code",
- "text": "`test:deno`"
- },
- {
- "kind": "text",
- "text": " | Deno runtime compatibility tests | Supabase running + Deno installed |\n| "
- },
- {
- "kind": "code",
- "text": "`test:bun`"
- },
- {
- "kind": "text",
- "text": " | Bun runtime compatibility tests | Supabase running + Bun installed |\n| Expo (see section below) | React Native/Expo tests | Supabase running + dependencies updated |\n| Next.js (see below) | Next.js SSR tests | Supabase running + dependencies updated |\n| "
- },
- {
- "kind": "code",
- "text": "`test:node:playwright`"
+ "id": 69,
+ "name": "FunctionsFetchError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 70,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 21,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 71,
+ "name": "FunctionsFetchError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 21,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 72,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 69,
+ "name": "FunctionsFetchError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 73,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [70]
+ },
+ {
+ "title": "Properties",
+ "children": [73]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 20,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
},
{
- "kind": "text",
- "text": " | WebSocket browser tests | Supabase running + Playwright |\n\n#### Unit Testing\n\n"
+ "id": 64,
+ "name": "FunctionsHttpError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 65,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 66,
+ "name": "FunctionsHttpError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 67,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 64,
+ "name": "FunctionsHttpError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 68,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [65]
+ },
+ {
+ "title": "Properties",
+ "children": [68]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 26,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
},
{
- "kind": "code",
- "text": "```bash\n# Run all unit tests (Jest)\nnpx nx test supabase-js\n\n# Run only unit tests in test/unit directory\nnpx nx test:unit supabase-js\n\n# Run tests in watch mode during development\nnpx nx test supabase-js --watch\n\n# Run tests with coverage report\nnpx nx test:coverage supabase-js\n```"
+ "id": 74,
+ "name": "FunctionsRelayError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 75,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 76,
+ "name": "FunctionsRelayError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 77,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 74,
+ "name": "FunctionsRelayError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 78,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [75]
+ },
+ {
+ "title": "Properties",
+ "children": [78]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 23,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
},
{
- "kind": "text",
- "text": "\n\n#### Integration Testing\n\n"
+ "id": 275,
+ "name": "GoTrueAdminApi",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 276,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 277,
+ "name": "GoTrueAdminApi",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 278,
+ "name": "__namedParameters",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 279,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 285,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 22,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 286,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 287,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 288,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 289,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 290,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 291,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 292,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 281,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 19,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 282,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 19,
+ "character": 18
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 283,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 20,
+ "character": 12
+ }
+ ],
+ "parameters": [
+ {
+ "id": 284,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 280,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 18,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [285, 281, 280]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 42
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 300,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 16,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 301,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 302,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 303,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 304,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 305,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 306,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 307,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 296,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 297,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 13,
+ "character": 23
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 298,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 14,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 299,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 293,
+ "name": "mfa",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all MFA administration methods."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 6,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1237,
+ "name": "GoTrueAdminMFAApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 294,
+ "name": "oauth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth client administration methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1347,
+ "name": "GoTrueAdminOAuthApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 295,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 12,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 325,
+ "name": "createUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 326,
+ "name": "createUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new user.\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 327,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 839,
+ "name": "AdminUserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 349,
+ "name": "deleteUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 100,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 350,
+ "name": "deleteUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Delete a user. Requires a "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 100,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 351,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user id you want to remove."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 352,
+ "name": "shouldSoftDelete",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, then the user will be soft-deleted from the auth schema. Soft deletion allows user identification from the hashed user ID but is not reversible.\nDefaults to false for backward compatibility.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 322,
+ "name": "generateLink",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 323,
+ "name": "generateLink",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Generates email links and OTPs to be sent via a custom email provider."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 324,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1047,
+ "name": "GenerateLinkParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1048,
+ "name": "GenerateLinkResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 342,
+ "name": "getUserById",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 343,
+ "name": "getUserById",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Get user by id."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 344,
+ "name": "uid",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's unique identifier\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 315,
+ "name": "inviteUserByEmail",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 316,
+ "name": "inviteUserByEmail",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends an invite link to an email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 317,
+ "name": "email",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email address of the user."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 318,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Additional options to be included when inviting."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 319,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 320,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store additional metadata about the user. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.user_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " column."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 40,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 321,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL which will be appended to the email link sent to the user's email address. Once clicked the user will end up on this URL."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 42,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [320, 321]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 47
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 328,
+ "name": "listUsers",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 329,
+ "name": "listUsers",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Get a list of users.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 330,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An object which supports "
+ },
+ {
+ "kind": "code",
+ "text": "`page`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`perPage`"
+ },
+ {
+ "kind": "text",
+ "text": " as numbers, to alter the paginated results."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1258,
+ "name": "PageParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 331,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 332,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 333,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 335,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 66,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 334,
+ "name": "users",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 65,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [335, 334]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 64,
+ "character": 14
+ }
+ ]
+ }
+ },
+ {
+ "type": "reference",
+ "target": 1251,
+ "name": "Pagination",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 336,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 68,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [332, 336]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 44
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 337,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 338,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 70,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 339,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 340,
+ "name": "users",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 71,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "tuple"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [340]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 70,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 341,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 73,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [338, 341]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 69,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 308,
+ "name": "signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 309,
+ "name": "signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Removes a logged-in session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 310,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A valid, logged-in JWT."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 311,
+ "name": "scope",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The logout sope."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 312,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 313,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 30,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 314,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 31,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [313, 314]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 345,
+ "name": "updateUserById",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 346,
+ "name": "updateUserById",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates the user data."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 347,
+ "name": "uid",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 348,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The data you want to update.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 839,
+ "name": "AdminUserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [276]
+ },
+ {
+ "title": "Properties",
+ "children": [300, 296, 293, 294, 295]
+ },
+ {
+ "title": "Methods",
+ "children": [325, 349, 322, 342, 315, 328, 308, 345]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 4,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 361,
+ "name": "GoTrueClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 363,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 364,
+ "name": "GoTrueClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Create a new client for use in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 365,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 705,
+ "name": "GoTrueClientOptions",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 361,
+ "name": "GoTrueClient",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 367,
+ "name": "admin",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the GoTrue admin methods.\nThese methods should only be used in a trusted server-side environment."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 13,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 393,
+ "name": "autoRefreshTicker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 51,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/node/timers.d.ts",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ },
+ "name": "Timeout",
+ "package": "@types/node",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ }
+ ]
+ }
+ },
+ {
+ "id": 384,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 40,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 418,
+ "name": "broadcastChannel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Used to broadcast state change events to other tabs listening."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 75,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "BroadcastChannel"
+ },
+ "name": "BroadcastChannel",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 399,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 61,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 407,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 68,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 408,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 409,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 410,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 411,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 412,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 413,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 414,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 371,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 28,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 898,
+ "name": "AuthFlowType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 405,
+ "name": "hasCustomAuthorizationHeader",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 66,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 401,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 63,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 402,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 63,
+ "character": 23
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 403,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 404,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 398,
+ "name": "initializePromise",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Keeps track of the async client initialization.\nWhen null or not yet resolved the auth state is "
+ },
+ {
+ "kind": "code",
+ "text": "`unknown`"
+ },
+ {
+ "kind": "text",
+ "text": "\nOnce resolved the auth state is known and it's safe to call any further client methods.\nKeep extra care to never reject or throw uncaught errors"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 60,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1247,
+ "name": "InitializeResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 415,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 69,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 696,
+ "name": "LockFunc",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 416,
+ "name": "lockAcquired",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 70,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 419,
+ "name": "logDebugMessages",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 76,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 420,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 421,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 22
+ }
+ ],
+ "signatures": [
+ {
+ "id": 422,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 22
+ }
+ ],
+ "parameters": [
+ {
+ "id": 423,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 424,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 388,
+ "name": "memoryStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 47,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 389,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 47,
+ "character": 29
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 390,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 48,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 391,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 368,
+ "name": "mfa",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the MFA methods."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1107,
+ "name": "GoTrueMFAApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 369,
+ "name": "oauth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the OAuth 2.1 authorization server methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\nUsed to implement the authorization code flow on the consent page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 23,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1390,
+ "name": "AuthOAuthServerApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 417,
+ "name": "pendingInLock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 71,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 385,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 41,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 397,
+ "name": "refreshingDeferred",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 53,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/helpers.ts",
+ "qualifiedName": "Deferred"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1250,
+ "name": "CallRefreshTokenResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Deferred",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 392,
+ "name": "stateChangeEmitters",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
+ "qualifiedName": "Map"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Map",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 386,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 42,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 370,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The storage key used to identify the values saved in localStorage"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 27,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 406,
+ "name": "suppressGetSessionWarning",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 67,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 400,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 62,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 387,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 46,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 394,
+ "name": "visibilityChangedCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 395,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 42
+ }
+ ],
+ "signatures": [
+ {
+ "id": 396,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 42
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 372,
+ "name": "jwks",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 18
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 18
+ }
+ ],
+ "getSignature": {
+ "id": 373,
+ "name": "jwks",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The JWKS used for verifying asymmetric JWTs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 374,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 375,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 33,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [375]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ "setSignature": {
+ "id": 376,
+ "name": "jwks",
+ "variant": "signature",
+ "kind": 1048576,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 18
+ }
+ ],
+ "parameters": [
+ {
+ "id": 377,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 378,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 379,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 36,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [379]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 30
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ {
+ "id": 380,
+ "name": "jwks_cached_at",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 38,
+ "character": 18
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 39,
+ "character": 18
+ }
+ ],
+ "getSignature": {
+ "id": 381,
+ "name": "jwks_cached_at",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 38,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ "setSignature": {
+ "id": 382,
+ "name": "jwks_cached_at",
+ "variant": "signature",
+ "kind": 1048576,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 39,
+ "character": 18
+ }
+ ],
+ "parameters": [
+ {
+ "id": 383,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ {
+ "id": 533,
+ "name": "_refreshSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 534,
+ "name": "_refreshSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 535,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 536,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 537,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 291,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [537]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 47
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 522,
+ "name": "_setSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 523,
+ "name": "_setSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 524,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 525,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 526,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 278,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 527,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 279,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [526, 527]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 42
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 546,
+ "name": "_signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 547,
+ "name": "_signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 548,
+ "name": "__namedParameters",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1262,
+ "name": "SignOut",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 549,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 550,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 317,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [550]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 53
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 510,
+ "name": "_updateUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 511,
+ "name": "_updateUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 512,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 513,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 514,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 515,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 266,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [515]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 64
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 441,
+ "name": "exchangeCodeForSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 442,
+ "name": "exchangeCodeForSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user by exchanging an Auth Code issued during the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 443,
+ "name": "authCode",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 644,
+ "name": "getClaims",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 645,
+ "name": "getClaims",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Extracts the JWT claims present in the access token by first verifying the\nJWT against the server's JSON Web Key Set endpoint\n"
+ },
+ {
+ "kind": "code",
+ "text": "`/.well-known/jwks.json`"
+ },
+ {
+ "kind": "text",
+ "text": " which is often cached, resulting in significantly\nfaster responses. Prefer this method over "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser"
+ },
+ {
+ "kind": "text",
+ "text": " which always\nsends a request to the Auth server for each JWT.\n\nIf the project is not using an asymmetric JWT signing key (like ECC or\nRSA) it always sends a request to the Auth server (similar to "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser"
+ },
+ {
+ "kind": "text",
+ "text": ") to verify the JWT."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 646,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An optional specific JWT you wish to verify, not the one you\n can obtain from "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getSession"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 647,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Various additional options that allow you to customize the\n behavior of this method."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 648,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 650,
+ "name": "allowExpired",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " the "
+ },
+ {
+ "kind": "code",
+ "text": "`exp`"
+ },
+ {
+ "kind": "text",
+ "text": " claim will not be validated against the current time."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 555,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 651,
+ "name": "jwks",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set, this JSON Web Key Set is going to have precedence over the cached value available on the server."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 557,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 652,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 653,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 558,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [653]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 557,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 649,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Please use options.jwks instead."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 553,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [650, 651, 649]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 38
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 654,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 655,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 561,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 656,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 657,
+ "name": "claims",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 562,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1286,
+ "name": "JwtPayload",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 658,
+ "name": "header",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 563,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1271,
+ "name": "JwtHeader",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 659,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 564,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [657, 658, 659]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 561,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 660,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 566,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [655, 660]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 560,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 661,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 662,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 568,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 663,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 569,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [662, 663]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 567,
+ "character": 8
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 664,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 665,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 571,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 666,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 572,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [665, 666]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 570,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 480,
+ "name": "getSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 481,
+ "name": "getSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the session, refreshing it if necessary.\n\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\n\n**IMPORTANT:** This method loads values directly from the storage attached\nto the client. If that storage is based on request cookies for example,\nthe values in it may not be authentic and therefore it's strongly advised\nagainst using this method and its results in such circumstances. A warning\nwill be emitted if this is detected. Use "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser()"
+ },
+ {
+ "kind": "text",
+ "text": " instead."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 482,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 483,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 218,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 484,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 485,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 219,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [485]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 218,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 486,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 221,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [483, 486]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 26
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 487,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 488,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 223,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 489,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 490,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 224,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [490]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 223,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 491,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 226,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [488, 491]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 222,
+ "character": 8
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 492,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 493,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 228,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 494,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 495,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 229,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [495]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 228,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 496,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 231,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [493, 496]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 227,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 500,
+ "name": "getUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 501,
+ "name": "getUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets the current user details if there is an existing session. This method\nperforms a network request to the Supabase Auth server, so the returned\nvalue is authentic and can be used to base authorization rules on."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 502,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 587,
+ "name": "getUserIdentities",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 588,
+ "name": "getUserIdentities",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets all the identities linked to a user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 589,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 590,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 369,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 591,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 592,
+ "name": "identities",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 370,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [592]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 369,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 593,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 372,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [590, 593]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 33
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 594,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 595,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 374,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 596,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 375,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [595, 596]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 373,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 426,
+ "name": "initialize",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 427,
+ "name": "initialize",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the client session either from the url or from storage.\nThis method is automatically called when instantiating the client, but should also be called\nmanually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1247,
+ "name": "InitializeResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 597,
+ "name": "linkIdentity",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 381,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 385,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 598,
+ "name": "linkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Links an oauth identity to an existing user.\nThis method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 381,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 599,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 899,
+ "name": "SignInWithOAuthCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 777,
+ "name": "OAuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 600,
+ "name": "linkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Links an OIDC identity to an existing user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 385,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 601,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 551,
+ "name": "onAuthStateChange",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 552,
+ "name": "onAuthStateChange",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Receive a notification every time an auth event happens.\nSafe to use without an async function as callback."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 553,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A callback function to be invoked when an auth event happens."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 554,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 32
+ }
+ ],
+ "signatures": [
+ {
+ "id": 555,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 32
+ }
+ ],
+ "parameters": [
+ {
+ "id": 556,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 557,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 558,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 559,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 326,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 560,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 561,
+ "name": "subscription",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 327,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [561]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 326,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [559]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 92
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 562,
+ "name": "onAuthStateChange",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Avoid using an async function inside "
+ },
+ {
+ "kind": "code",
+ "text": "`onAuthStateChange`"
+ },
+ {
+ "kind": "text",
+ "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 563,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A callback function to be invoked when an auth event happens."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 564,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 32
+ }
+ ],
+ "signatures": [
+ {
+ "id": 565,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 32
+ }
+ ],
+ "parameters": [
+ {
+ "id": 566,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 567,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 568,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 569,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 343,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 570,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 571,
+ "name": "subscription",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 344,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [571]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 343,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [569]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 101
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 474,
+ "name": "reauthenticate",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 475,
+ "name": "reauthenticate",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a reauthentication OTP to the user's email or phone number.\nRequires the user to be signed-in."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 528,
+ "name": "refreshSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 529,
+ "name": "refreshSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns a new session, regardless of expiry status.\nTakes in an optional current session. If not passed in, then refreshSession() will attempt to retrieve it from getSession().\nIf the current session's refresh token is invalid, an error will be thrown."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 530,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The current session. If passed in, it must contain a refresh token."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 531,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 532,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 288,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [532]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 36
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 477,
+ "name": "resend",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 478,
+ "name": "resend",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resends an existing signup confirmation email, email change email, SMS OTP or phone change OTP."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 479,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 995,
+ "name": "ResendParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 763,
+ "name": "AuthOtpResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 573,
+ "name": "resetPasswordForEmail",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 574,
+ "name": "resetPasswordForEmail",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a password reset request to an email address. This method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 575,
+ "name": "email",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email address of the user."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 576,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 577,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 579,
+ "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/dist/module/GoTrueClient.d.ts",
+ "line": 357,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 578,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL to send the user to after they click the password reset link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 356,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [579, 578]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 580,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 581,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 359,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 582,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 583,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 360,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [581, 583]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 358,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 584,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 585,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 362,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 586,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 363,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [585, 586]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 361,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 516,
+ "name": "setSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 517,
+ "name": "setSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sets the session data from the current session. If the current session is expired, setSession will take care of refreshing it to obtain a new session.\nIf the refresh token or access token in the current session is invalid, an error will be thrown."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 518,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The current session that minimally contains an access token and refresh token."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 519,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 520,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 274,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 521,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 275,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [520, 521]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 31
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 429,
+ "name": "signInAnonymously",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 430,
+ "name": "signInAnonymously",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new anonymous user."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A session where the is_anonymous claim in the access token JWT set to true"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 431,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 862,
+ "name": "SignInAnonymouslyCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 462,
+ "name": "signInWithIdToken",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 463,
+ "name": "signInWithIdToken",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Allows signing in with an OIDC ID token. The authentication provider used\nshould be enabled and configured."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 464,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 438,
+ "name": "signInWithOAuth",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 439,
+ "name": "signInWithOAuth",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user via a third-party provider.\nThis method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 440,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 899,
+ "name": "SignInWithOAuthCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 777,
+ "name": "OAuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 465,
+ "name": "signInWithOtp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 176,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 466,
+ "name": "signInWithOtp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in a user using magiclink or a one-time password (OTP).\n\nIf the "
+ },
+ {
+ "kind": "code",
+ "text": "`{{ .ConfirmationURL }}`"
+ },
+ {
+ "kind": "text",
+ "text": " variable is specified in the email template, a magiclink will be sent.\nIf the "
+ },
+ {
+ "kind": "code",
+ "text": "`{{ .Token }}`"
+ },
+ {
+ "kind": "text",
+ "text": " variable is specified in the email template, an OTP will be sent.\nIf you're using phone sign-ins, only an OTP will be sent. You won't be able to send a magiclink for phone sign-ins.\n\nBe aware that you may get back an error message that will not distinguish\nbetween the cases where the account does not exist or, that the account\ncan only be accessed via social login.\n\nDo note that you will need to configure a Whatsapp sender on Twilio\nif you are using phone sign in with the 'whatsapp' channel. The whatsapp\nchannel is not supported on other providers\nat this time.\nThis method supports PKCE when an email is passed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 176,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 467,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 881,
+ "name": "SignInWithPasswordlessCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 763,
+ "name": "AuthOtpResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 435,
+ "name": "signInWithPassword",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 436,
+ "name": "signInWithPassword",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user with an email and password or phone and password.\n\nBe aware that you may get back an error message that will not distinguish\nbetween the cases where the account does not exist or that the\nemail/phone and password combination is wrong or that the account can only\nbe accessed via social login."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 437,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 876,
+ "name": "SignInWithPasswordCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 772,
+ "name": "AuthTokenResponsePassword",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 471,
+ "name": "signInWithSSO",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 195,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 472,
+ "name": "signInWithSSO",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Attempts a single-sign on using an enterprise Identity Provider. A\nsuccessful SSO attempt will redirect the current page to the identity\nprovider authorization page. The redirect URL is implementation and SSO\nprotocol specific.\n\nYou can use it by providing a SSO domain. Typically you can extract this\ndomain by asking users for their email address. If this domain is\nregistered on the Auth instance the redirect will use that organization's\ncurrently active SSO Identity Provider for the login.\n\nIf you have built an organization-specific login page, you can use the\norganization's SSO Identity Provider UUID directly instead."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 195,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 473,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1009,
+ "name": "SignInWithSSO",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 790,
+ "name": "SSOResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 444,
+ "name": "signInWithWeb3",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 445,
+ "name": "signInWithWeb3",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Signs in a user by verifying a message signed by the user's private key.\nSupports Ethereum (via Sign-In-With-Ethereum) & Solana (Sign-In-With-Solana) standards,\nboth of which derive from the EIP-4361 standard\nWith slight variation on Solana's side."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@reference",
+ "content": [
+ {
+ "kind": "text",
+ "text": "https://eips.ethereum.org/EIPS/eip-4361"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 446,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 972,
+ "name": "Web3Credentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 447,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 448,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 139,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 449,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 450,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 140,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 451,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 141,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [450, 451]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 139,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 452,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 143,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [448, 452]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 58
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 453,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 454,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 145,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 455,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 456,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 146,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 457,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 147,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [456, 457]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 145,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 458,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 149,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [454, 458]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 144,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 541,
+ "name": "signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 542,
+ "name": "signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Inside a browser context, "
+ },
+ {
+ "kind": "code",
+ "text": "`signOut()`"
+ },
+ {
+ "kind": "text",
+ "text": " will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a "
+ },
+ {
+ "kind": "code",
+ "text": "`\"SIGNED_OUT\"`"
+ },
+ {
+ "kind": "text",
+ "text": " event.\n\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.api.signOut(JWT: string)`"
+ },
+ {
+ "kind": "text",
+ "text": ".\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\n\nIf using "
+ },
+ {
+ "kind": "code",
+ "text": "`others`"
+ },
+ {
+ "kind": "text",
+ "text": " scope, no "
+ },
+ {
+ "kind": "code",
+ "text": "`SIGNED_OUT`"
+ },
+ {
+ "kind": "text",
+ "text": " event is fired!"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 543,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1262,
+ "name": "SignOut",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 544,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 545,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 314,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [545]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 40
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 432,
+ "name": "signUp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 112,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 433,
+ "name": "signUp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new user.\n\nBe aware that if a user account exists in the system you may get back an\nerror message that attempts to hide this information from the user.\nThis method has support for PKCE via email signups. The PKCE flow cannot be used when autoconfirm is enabled."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A logged-in session if the server has \"autoconfirm\" ON"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A user if the server has \"autoconfirm\" OFF"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 112,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 434,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 868,
+ "name": "SignUpWithPasswordCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 625,
+ "name": "startAutoRefresh",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 457,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 626,
+ "name": "startAutoRefresh",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Starts an auto-refresh process in the background. The session is checked\nevery few seconds. Close to the time of expiration a process is started to\nrefresh the session. If refreshing fails it will be retried for as long as\nnecessary.\n\nIf you set the "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClientOptions#autoRefreshToken",
+ "target": 714
+ },
+ {
+ "kind": "text",
+ "text": " you don't need\nto call this function, it will be called for you.\n\nOn browsers the refresh process works only when the tab/window is in the\nforeground to conserve resources as well as prevent race conditions and\nflooding auth with requests. If you call this method any managed\nvisibility change callback will be removed and you must manage visibility\nchanges on your own.\n\nOn non-browser platforms the refresh process works *continuously* in the\nbackground, which may not be desirable. You should hook into your\nplatform's foreground indication mechanism and call these methods\nappropriately to conserve resources.\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "#stopAutoRefresh"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 457,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 627,
+ "name": "stopAutoRefresh",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 466,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 628,
+ "name": "stopAutoRefresh",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Stops an active auto refresh process running in the background (if any).\n\nIf you call this method any managed visibility change callback will be\nremoved and you must manage visibility changes on your own.\n\nSee "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#startAutoRefresh"
+ },
+ {
+ "kind": "text",
+ "text": " for more details."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 466,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 604,
+ "name": "unlinkIdentity",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 605,
+ "name": "unlinkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unlinks an identity from a user by deleting it. The user will no longer be able to sign in with that identity once it's unlinked."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 606,
+ "name": "identity",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 607,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 608,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 392,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 609,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 610,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 393,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [608, 610]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 52
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 611,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 612,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 395,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 613,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 396,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [612, 613]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 394,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 504,
+ "name": "updateUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 505,
+ "name": "updateUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates user data for a logged in user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 506,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 507,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 508,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 509,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 263,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [509]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 53
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 468,
+ "name": "verifyOtp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 180,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 469,
+ "name": "verifyOtp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in a user given a User supplied OTP or TokenHash received through mobile or email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 180,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 470,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 973,
+ "name": "VerifyOtpParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [363]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 367, 393, 384, 418, 399, 407, 371, 405, 401, 398, 415, 416, 419, 420, 388, 368, 369,
+ 417, 385, 397, 392, 386, 370, 406, 400, 387, 394
+ ]
+ },
+ {
+ "title": "Accessors",
+ "children": [372, 380]
+ },
+ {
+ "title": "Methods",
+ "children": [
+ 533, 522, 546, 510, 441, 644, 480, 500, 587, 426, 597, 551, 474, 528, 477, 573, 516,
+ 429, 462, 438, 465, 435, 471, 444, 541, 432, 625, 627, 604, 504, 468
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 6,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 677,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 678,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 679,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 680,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 677,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "package": "@supabase/auth-js"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.constructor"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.constructor"
+ }
+ },
+ {
+ "id": 681,
+ "name": "isAcquireTimeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 16,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": true
+ },
+ "defaultValue": "true",
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.isAcquireTimeout"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [678]
+ },
+ {
+ "title": "Properties",
+ "children": [681]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 19,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError"
+ },
+ "name": "LockAcquireTimeoutError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 52,
+ "name": "PostgrestError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error format\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes",
+ "target": "https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 53,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 54,
+ "name": "PostgrestError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 55,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 56,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 60,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 14,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 58,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 12,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 59,
+ "name": "hint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 13,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 57,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 11,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [60, 58, 59, 57]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 25
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 52,
+ "name": "PostgrestError",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ },
+ {
+ "id": 63,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 61,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 7,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 62,
+ "name": "hint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 8,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [53]
+ },
+ {
+ "title": "Properties",
+ "children": [63, 61, 62]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 6,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ]
+ },
+ {
+ "id": 1593,
+ "name": "RealtimeChannel",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A channel is the basic building block of Realtime\nand narrows the scope of data flow to subscribed clients.\nYou can think of a channel as a chatroom where participants are able to see who's online\nand send and receive messages."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1594,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1595,
+ "name": "RealtimeChannel",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1596,
+ "name": "topic",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1597,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1598,
+ "name": "socket",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1602,
+ "name": "bindings",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 145,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1603,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 145,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1604,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 146,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1605,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1606,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1612,
+ "name": "callback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 151,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1608,
+ "name": "filter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 148,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1609,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 148,
+ "character": 20
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1610,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 149,
+ "character": 16
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1611,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1613,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 152,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1607,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 147,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1612, 1608, 1613, 1607]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 146,
+ "character": 23
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1621,
+ "name": "broadcastEndpointURL",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 162,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1616,
+ "name": "joinedOnce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 157,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1617,
+ "name": "joinPush",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1600,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 143,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1620,
+ "name": "presence",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 161,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1576,
+ "name": "RealtimePresence",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1623,
+ "name": "private",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1619,
+ "name": "pushBuffer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 1618,
+ "name": "rejoinTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 159,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/timer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Timer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1601,
+ "name": "socket",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 144,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1615,
+ "name": "state",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CHANNEL_STATES"
+ },
+ "name": "CHANNEL_STATES",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1622,
+ "name": "subTopic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 163,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1614,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 155,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1599,
+ "name": "topic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1850,
+ "name": "httpSend",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1851,
+ "name": "httpSend",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise resolving to object with success status, and error details if failed"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1852,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the broadcast event"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1853,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Payload to be sent (required)"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 1854,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options including timeout"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1855,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1856,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 288,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1856]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 49
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1857,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1858,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 290,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": true
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1858]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 289,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1859,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1862,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 294,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1861,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 293,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1860,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 292,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": false
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1862, 1861, 1860]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 291,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1655,
+ "name": "on",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1656,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1657,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1658,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1659,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1660,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 185,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1660]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1661,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1662,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 186,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1663,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 186,
+ "character": 17
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1664,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1665,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1666,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1667,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 188,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1668,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1669,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1670,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1671,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1672,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 190,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1672]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 189,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1673,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1674,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 191,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1675,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 191,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1676,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2088,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1665,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceJoinPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1677,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1678,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1679,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1680,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 193,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1681,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1682,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1683,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1684,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1685,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 195,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1685]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 194,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1686,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1687,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 196,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1688,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 196,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1689,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2098,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1678,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceLeavePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1690,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1691,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1692,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1693,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 198,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1694,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1695,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1696,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "*"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1697,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1698,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 199,
+ "character": 156
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1699,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 199,
+ "character": 156
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1700,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2054,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1691,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresChangesPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1701,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1702,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1703,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1704,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 201,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1705,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1706,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1707,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1708,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1709,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 202,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1710,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 202,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1711,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2059,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1702,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1712,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1713,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1714,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1715,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 204,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1716,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1717,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1718,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1719,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1720,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 205,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1721,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 205,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1722,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2069,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1713,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresUpdatePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1723,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1724,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1725,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1726,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 207,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1727,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1728,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1729,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1730,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1731,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 208,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1732,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 208,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1733,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2078,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1724,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1734,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1735,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of \"broadcast\", \"presence\", or \"postgres_changes\"."
+ }
+ ]
+ },
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1736,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom object specific to the Realtime feature detailing which payloads to receive."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1737,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1738,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 216,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1738]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1739,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Function to be invoked when event handler is triggered."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1740,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1741,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1742,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1743,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1745,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 219,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1746,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 220,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1747,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1749,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 222,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1748,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 221,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1749, 1748]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 220,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1744,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 218,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1745, 1746, 1744]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 27
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1750,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 224,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1751,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1752,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1753,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1754,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1755,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 227,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1756,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1757,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1758,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1759,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1760,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 229,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1760]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 228,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1761,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1762,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1763,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1764,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1765,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1767,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 232,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1768,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 233,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1769,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1771,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 235,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1770,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 234,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1771, 1770]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 233,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1772,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 237,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1753,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 1766,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 231,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1767, 1768, 1772, 1766]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1773,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1774,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1775,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1776,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1777,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1778,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 240,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2124,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1778]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 94
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1779,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1780,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1781,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1782,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1783,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1785,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 243,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2124,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
+ }
+ },
+ {
+ "id": 1786,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 244,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1774,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1784,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 242,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1785, 1786, 1784]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1787,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1788,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1789,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1790,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 247,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1791,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1792,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1793,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1794,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1795,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 249,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2125,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1795]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 248,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1796,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1797,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1798,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1799,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1800,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1802,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 252,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2125,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ },
+ {
+ "id": 1803,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 253,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastInsertPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1788,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1801,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 251,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1802, 1803, 1801]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1804,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1805,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1806,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1807,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 256,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1808,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1809,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1810,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1811,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1812,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 258,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2126,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1812]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 257,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1813,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1814,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1815,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1816,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1817,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1819,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 261,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2126,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
+ }
+ },
+ {
+ "id": 1820,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 262,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastUpdatePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1805,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastUpdatePayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1818,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 260,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1819, 1820, 1818]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1821,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1822,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1823,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1824,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 265,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1825,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1826,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1827,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1828,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1829,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 267,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2127,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1829]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 266,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1830,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1831,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1832,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1833,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1834,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1836,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 270,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2127,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
+ }
+ },
+ {
+ "id": 1837,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 271,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastDeletePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1822,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1835,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 269,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1836, 1837, 1835]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1838,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1839,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1840,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1841,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 274,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1842,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1843,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ },
+ {
+ "id": 1844,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1845,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 1846,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1847,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 275,
+ "character": 70
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1848,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 275,
+ "character": 70
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1849,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1632,
+ "name": "presenceState",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1633,
+ "name": "presenceState",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1634,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1635,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 28
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1636,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 171,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1637,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1638,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2108,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1634,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceState",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1863,
+ "name": "send",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1864,
+ "name": "send",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a message into the channel."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1865,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Arguments to send to channel"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1866,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1868,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the event being sent"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 307,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1869,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Payload to be sent"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 308,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 1867,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of event to send"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 306,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "broadcast"
+ },
+ {
+ "type": "literal",
+ "value": "presence"
+ },
+ {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1868, 1869, 1867]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 15
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1870,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 309,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1871,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1872,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options to be used during the send process"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1873,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 310,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1874,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 311,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1875,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1624,
+ "name": "subscribe",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1625,
+ "name": "subscribe",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Subscribe registers your client with the server"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1626,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1627,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 25
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1628,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 25
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1629,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2132,
+ "name": "REALTIME_SUBSCRIBE_STATES",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1630,
+ "name": "err",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1631,
+ "name": "timeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1885,
+ "name": "teardown",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 331,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1886,
+ "name": "teardown",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Teardown the channel.\n\nDestroys and stops related timers."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 331,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1639,
+ "name": "track",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1640,
+ "name": "track",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1641,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1642,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 19
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1643,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 174,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1644,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1645,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1646,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 175,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1647,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 176,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1648,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1882,
+ "name": "unsubscribe",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1883,
+ "name": "unsubscribe",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Leaves the channel.\n\nUnsubscribes from server events, and instructs channel to terminate on server.\nTriggers onClose() hooks.\n\nTo receive leave acknowledgements, use the a "
+ },
+ {
+ "kind": "code",
+ "text": "`receive`"
+ },
+ {
+ "kind": "text",
+ "text": " hook to bind to the server ack, ie:\nchannel.unsubscribe().receive(\"ok\", () => alert(\"left!\") )"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1884,
+ "name": "timeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1649,
+ "name": "untrack",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1650,
+ "name": "untrack",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1651,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1652,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 19
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1653,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 179,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1654,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1876,
+ "name": "updateJoinPayload",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1877,
+ "name": "updateJoinPayload",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1878,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1879,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 31
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1880,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 314,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1881,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1594]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 1602, 1621, 1616, 1617, 1600, 1620, 1623, 1619, 1618, 1601, 1615, 1622, 1614, 1599
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [1850, 1655, 1632, 1863, 1624, 1885, 1639, 1882, 1649, 1876]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 140,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 1902,
+ "name": "RealtimeClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1903,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1904,
+ "name": "RealtimeClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the Socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1905,
+ "name": "endPoint",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The string WebSocket endpoint, ie, \"ws://example.com/socket\", \"wss://example.com\", \"/socket\" (inherited host & protocol)"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1906,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 2011,
+ "name": "RealtimeClientOptions",
+ "package": "@supabase/realtime-js",
+ "highlightedProperties": {
+ "transport": [
+ {
+ "kind": "text",
+ "text": "The Websocket Transport, for example WebSocket. This can be a custom implementation"
+ }
+ ],
+ "timeout": [
+ {
+ "kind": "text",
+ "text": "The default timeout in milliseconds to trigger push timeouts."
+ }
+ ],
+ "params": [
+ {
+ "kind": "text",
+ "text": "The optional params to pass when connecting."
+ }
+ ],
+ "headers": [
+ {
+ "kind": "text",
+ "text": "Deprecated: headers cannot be set on websocket connections and this option will be removed in the future."
+ }
+ ],
+ "heartbeatIntervalMs": [
+ {
+ "kind": "text",
+ "text": "The millisec interval to send a heartbeat message."
+ }
+ ],
+ "heartbeatCallback": [
+ {
+ "kind": "text",
+ "text": "The optional function to handle heartbeat status."
+ }
+ ],
+ "logger": [
+ {
+ "kind": "text",
+ "text": "The optional function for specialized logging, ie: logger: (kind, msg, data) => { console.log("
+ },
+ {
+ "kind": "code",
+ "text": "`${kind}: ${msg}`"
+ },
+ {
+ "kind": "text",
+ "text": ", data) }"
+ }
+ ],
+ "logLevel": [
+ {
+ "kind": "text",
+ "text": "Sets the log level for Realtime"
+ }
+ ],
+ "encode": [
+ {
+ "kind": "text",
+ "text": "The function to encode outgoing messages. Defaults to JSON: (payload, callback) => callback(JSON.stringify(payload))"
+ }
+ ],
+ "decode": [
+ {
+ "kind": "text",
+ "text": "The function to decode incoming messages. Defaults to Serializer's decode."
+ }
+ ],
+ "reconnectAfterMs": [
+ {
+ "kind": "text",
+ "text": "he optional function that returns the millsec reconnect interval. Defaults to stepped backoff off."
+ }
+ ],
+ "worker": [
+ {
+ "kind": "text",
+ "text": "Use Web Worker to set a side flow. Defaults to false."
+ }
+ ],
+ "workerUrl": [
+ {
+ "kind": "text",
+ "text": "The URL of the worker script. Defaults to https://realtime.supabase.com/worker.js that includes a heartbeat event call to keep the connection alive."
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1953,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1954,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1955,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1907,
+ "name": "accessTokenValue",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1908,
+ "name": "apiKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 57,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1909,
+ "name": "channels",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 58,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 1936,
+ "name": "conn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1934,
+ "name": "decode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 79,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1933,
+ "name": "encode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 78,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1910,
+ "name": "endPoint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 59,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1945,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1946,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1947,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1948,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1949,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1950,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1951,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1952,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1912,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "headers cannot be set on websocket connections"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 62,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1913,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 62,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1914,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 63,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1915,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1925,
+ "name": "heartbeatCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1926,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1927,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 23
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1928,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1922,
+ "name": "heartbeatIntervalMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 70,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1923,
+ "name": "heartbeatTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 71,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/node/timers.d.ts",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ },
+ "name": "Timeout",
+ "package": "@types/node",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1911,
+ "name": "httpEndpoint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 60,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1931,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 76,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1932,
+ "name": "logLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 77,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1916,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1917,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 65,
+ "character": 13
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1918,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 66,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1919,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1924,
+ "name": "pendingHeartbeatRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 72,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1935,
+ "name": "reconnectAfterMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 80,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1930,
+ "name": "reconnectTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 75,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/timer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Timer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1929,
+ "name": "ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 74,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1937,
+ "name": "sendBuffer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1938,
+ "name": "serializer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/serializer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Serializer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1939,
+ "name": "stateChangeCallbacks",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1940,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1942,
+ "name": "close",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 86,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1943,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 87,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1944,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 88,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1941,
+ "name": "open",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 85,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1942, 1943, 1944, 1941]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 84,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1920,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 68,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1921,
+ "name": "transport",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 69,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 2204,
+ "name": "WebSocketLikeConstructor",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1956,
+ "name": "worker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 92,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1958,
+ "name": "workerRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Worker"
+ },
+ "name": "Worker",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1957,
+ "name": "workerUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 93,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1990,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1991,
+ "name": "channel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1992,
+ "name": "topic",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1993,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1962,
+ "name": "connect",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1963,
+ "name": "connect",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Connects the socket, unless already connected."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1982,
+ "name": "connectionState",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1983,
+ "name": "connectionState",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the current state of the socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CONNECTION_STATE"
+ },
+ "name": "CONNECTION_STATE",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1966,
+ "name": "disconnect",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1967,
+ "name": "disconnect",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Disconnects the socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1968,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A numeric status code to send on disconnect."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1969,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom reason for the disconnect."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1964,
+ "name": "endpointURL",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1965,
+ "name": "endpointURL",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the URL of the websocket."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "string The URL of the websocket."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2008,
+ "name": "flushSendBuffer",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 194,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2009,
+ "name": "flushSendBuffer",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Flushes send buffer"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 194,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1970,
+ "name": "getChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1971,
+ "name": "getChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns all created channels"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1984,
+ "name": "isConnected",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1985,
+ "name": "isConnected",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " is the connection is open."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1986,
+ "name": "isConnecting",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1987,
+ "name": "isConnecting",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " if the connection is currently connecting."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1988,
+ "name": "isDisconnecting",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 168,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1989,
+ "name": "isDisconnecting",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " if the connection is currently disconnecting."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 168,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1977,
+ "name": "log",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 152,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1978,
+ "name": "log",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Logs the message.\n\nFor customized logging, "
+ },
+ {
+ "kind": "code",
+ "text": "`this.logger`"
+ },
+ {
+ "kind": "text",
+ "text": " can be overridden."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 152,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1979,
+ "name": "kind",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1980,
+ "name": "msg",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1981,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2002,
+ "name": "onHeartbeat",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2003,
+ "name": "onHeartbeat",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2004,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2005,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 26
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2006,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 26
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2007,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1994,
+ "name": "push",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 175,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1995,
+ "name": "push",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Push out a message if the socket is connected.\n\nIf the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 175,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1996,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2040,
+ "name": "RealtimeMessage",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1975,
+ "name": "removeAllChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 146,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1976,
+ "name": "removeAllChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes all channels"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 146,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1972,
+ "name": "removeChannel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1973,
+ "name": "removeChannel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes a single channel"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1974,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A RealtimeChannel instance"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2000,
+ "name": "sendHeartbeat",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 189,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2001,
+ "name": "sendHeartbeat",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a heartbeat message if the socket is connected."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 189,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1997,
+ "name": "setAuth",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 185,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1998,
+ "name": "setAuth",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sets the JWT access token used for channel subscription authorization and Realtime RLS.\n\nIf param is null it will use the "
+ },
+ {
+ "kind": "code",
+ "text": "`accessToken`"
+ },
+ {
+ "kind": "text",
+ "text": " callback function or the token set on the client.\n\nOn callback used, it will set the value of the token internal to the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 185,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1999,
+ "name": "token",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A JWT string to override the token set on the client."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1903]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 1953, 1907, 1908, 1909, 1936, 1934, 1933, 1910, 1945, 1912, 1925, 1922, 1923, 1911,
+ 1931, 1932, 1916, 1924, 1935, 1930, 1929, 1937, 1938, 1939, 1920, 1921, 1956, 1958,
+ 1957
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [
+ 1990, 1962, 1982, 1966, 1964, 2008, 1970, 1984, 1986, 1988, 1977, 2002, 1994, 1975,
+ 1972, 2000, 1997
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 55,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 1576,
+ "name": "RealtimePresence",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1577,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1578,
+ "name": "RealtimePresence",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the Presence."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1579,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The RealtimeChannel"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1580,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The options,\n for example "
+ },
+ {
+ "kind": "code",
+ "text": "`{events: {state: 'state', diff: 'diff'}}`"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOpts"
+ },
+ "name": "PresenceOpts",
+ "package": "@types/phoenix"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1576,
+ "name": "RealtimePresence",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1586,
+ "name": "caller",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1587,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1588,
+ "name": "onJoin",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 54,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOnJoinCallback"
+ },
+ "name": "PresenceOnJoinCallback",
+ "package": "@types/phoenix"
+ }
+ },
+ {
+ "id": 1589,
+ "name": "onLeave",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 55,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOnLeaveCallback"
+ },
+ "name": "PresenceOnLeaveCallback",
+ "package": "@types/phoenix"
+ }
+ },
+ {
+ "id": 1590,
+ "name": "onSync",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1591,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 16
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1592,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 16
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1588, 1589, 1590]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 53,
+ "character": 12
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1581,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 48,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1585,
+ "name": "enabled",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 52,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1584,
+ "name": "joinRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1583,
+ "name": "pendingDiffs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RawPresenceDiff"
+ },
+ "name": "RawPresenceDiff",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 1582,
+ "name": "state",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 49,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2108,
+ "name": "RealtimePresenceState",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1577]
+ },
+ {
+ "title": "Properties",
+ "children": [1586, 1581, 1585, 1584, 1583, 1582]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 47,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 112,
+ "name": "SupabaseClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Client.\n\nAn isomorphic Javascript client for interacting with Postgres."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 113,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 105,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 114,
+ "name": "SupabaseClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Create a new client for use in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 105,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 115,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 116,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 117,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 118,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [118]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 119,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 120,
+ "name": "Schema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "objectType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 121,
+ "name": "ClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 122,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 123,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [123]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 124,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 125,
+ "name": "__InternalSupabase",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 126,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 127,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 47,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [127]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 45,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [125]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "falseType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 128,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 129,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "12"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [129]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ]
+ }
+ }
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 130,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 131,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 42,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [131]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 40,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 132,
+ "name": "supabaseUrl",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 133,
+ "name": "supabaseKey",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 134,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 242,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClientOptions",
+ "package": "@supabase/supabase-js",
+ "highlightedProperties": {
+ "realtime": [
+ {
+ "kind": "text",
+ "text": "Options passed along to realtime-js constructor."
+ }
+ ],
+ "storage": [
+ {
+ "kind": "text",
+ "text": "Options passed along to the storage-js constructor."
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 112,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClient",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 153,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 154,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 155,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 135,
+ "name": "auth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Auth allows you to create and manage user sessions for access to data that is secured by access policies."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 73,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/SupabaseAuthClient.ts",
+ "qualifiedName": "SupabaseAuthClient"
+ },
+ "name": "SupabaseAuthClient",
+ "package": "@supabase/supabase-js"
+ }
+ },
+ {
+ "id": 139,
+ "name": "authUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 81,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 152,
+ "name": "changedAccessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 87,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 144,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 86,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 145,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 146,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 147,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 148,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 149,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 150,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 151,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 141,
+ "name": "functionsUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 83,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 156,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 90,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 136,
+ "name": "realtime",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 74,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 138,
+ "name": "realtimeUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 80,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 142,
+ "name": "rest",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 84,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestClient.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestClient",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 137,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Storage allows you to manage user-generated content, such as photos or videos."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 78,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../storage-js/src/StorageClient.ts",
+ "qualifiedName": "StorageClient"
+ },
+ "name": "StorageClient",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 143,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 85,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 140,
+ "name": "storageUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 82,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 158,
+ "name": "supabaseKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 107,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L107"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 157,
+ "name": "supabaseUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 106,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L106"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 159,
+ "name": "functions",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 180,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L180"
+ }
+ ],
+ "getSignature": {
+ "id": 160,
+ "name": "functions",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Functions allows you to deploy and invoke edge functions."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 180,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L180"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../functions-js/src/FunctionsClient.ts",
+ "qualifiedName": "FunctionsClient"
+ },
+ "name": "FunctionsClient",
+ "package": "@supabase/functions-js"
+ }
+ }
+ },
+ {
+ "id": 186,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 294,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 187,
+ "name": "channel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 294,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 188,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 189,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The options to pass to the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 161,
+ "name": "from",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Perform a query on a table or a view."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@param",
+ "name": "relation",
+ "content": [
+ {
+ "kind": "text",
+ "text": "The table or view name to query"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 188,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L188"
+ },
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 192,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L192"
+ },
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 200,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L200"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 162,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 188,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L188"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 163,
+ "name": "TableName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 164,
+ "name": "Table",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericTable"
+ },
+ "name": "GenericTable",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 165,
+ "name": "relation",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 163,
+ "name": "TableName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestQueryBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 164,
+ "name": "Table",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 163,
+ "name": "TableName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestQueryBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 166,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 192,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L192"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 167,
+ "name": "ViewName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 168,
+ "name": "View",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericView"
+ },
+ "name": "GenericView",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 169,
+ "name": "relation",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 167,
+ "name": "ViewName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestQueryBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 168,
+ "name": "View",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 167,
+ "name": "ViewName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestQueryBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 190,
+ "name": "getChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 301,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 191,
+ "name": "getChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns all Realtime channels."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 301,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 195,
+ "name": "removeAllChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 318,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 196,
+ "name": "removeAllChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes all Realtime channels from Realtime client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 318,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 192,
+ "name": "removeChannel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 311,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 193,
+ "name": "removeChannel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes Realtime channel from Realtime client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 311,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 194,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 174,
+ "name": "rpc",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 247,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 175,
+ "name": "rpc",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Perform a function call."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 247,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 176,
+ "name": "FnName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 177,
+ "name": "Args",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ },
+ "default": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ },
+ {
+ "id": 178,
+ "name": "FilterBuilder",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/rpc.ts",
+ "qualifiedName": "RpcFunctionNotFound"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RpcFunctionNotFound",
+ "package": "@supabase/supabase-js"
+ },
+ "default": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/rpc.ts",
+ "qualifiedName": "GetRpcFunctionFilterBuilderByArgs"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 177,
+ "name": "Args",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "GetRpcFunctionFilterBuilderByArgs",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 179,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The function name to call"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 180,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The arguments to pass to the function call"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 177,
+ "name": "Args",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 181,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Named parameters"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 182,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 185,
+ "name": "count",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Count algorithm to use to count rows returned by the\nfunction. Only applicable for [set-returning\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"exact\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Exact but slow count algorithm. Performs a "
+ },
+ {
+ "kind": "code",
+ "text": "`COUNT(*)`"
+ },
+ {
+ "kind": "text",
+ "text": " under the\nhood.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"planned\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Approximated but fast count algorithm. Uses the Postgres\nstatistics under the hood.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"estimated\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Uses exact count for low numbers and planned count for high\nnumbers."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 261,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ }
+ },
+ {
+ "id": 184,
+ "name": "get",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ", the function will be called with\nread-only access mode."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 260,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L260"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 183,
+ "name": "head",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " will not be returned.\nUseful if you only need the count."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 259,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L259"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [185, 184, 183]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 258,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L258"
+ }
+ ]
+ }
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestFilterBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Row"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Result"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "RelationName"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Relationships"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "RPC"
+ }
+ ],
+ "name": "PostgrestFilterBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 170,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 212,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 171,
+ "name": "schema",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Select a schema to query or perform an function (rpc) call.\n\nThe schema needs to be on the list of exposed schemas inside Supabase."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 212,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 172,
+ "name": "DynamicSchema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 173,
+ "name": "schema",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The schema to query"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestClient.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "objectType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "name": "PostgrestClient",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [113]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 153, 135, 139, 152, 144, 141, 156, 136, 138, 142, 137, 143, 140, 158, 157
+ ]
+ },
+ {
+ "title": "Accessors",
+ "children": [159]
+ },
+ {
+ "title": "Methods",
+ "children": [186, 161, 190, 195, 192, 174, 170]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 37,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 225,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 226,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 227,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 228,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [228]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 229,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 230,
+ "name": "Schema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 231,
+ "name": "ClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 232,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 233,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [233]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "trueType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 234,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 235,
+ "name": "__InternalSupabase",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 236,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 237,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 47,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [237]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 45,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [235]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "falseType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 238,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 239,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "12"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [239]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ]
+ }
+ }
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 240,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 241,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 42,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [241]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 40,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 2138,
+ "name": "WebSocketFactory",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 2152,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "signatures": [
+ {
+ "id": 2153,
+ "name": "WebSocketFactory",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2138,
+ "name": "WebSocketFactory",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2146,
+ "name": "createWebSocket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 31,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2147,
+ "name": "createWebSocket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 31,
+ "character": 11
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2148,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2149,
+ "name": "protocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2140,
+ "name": "getWebSocketConstructor",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 30,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2141,
+ "name": "getWebSocketConstructor",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 30,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2142,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 26772,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2143,
+ "name": "getWebSocketConstructor",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 26774,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2144,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2145,
+ "name": "protocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "WebSocket"
+ },
+ "name": "WebSocket",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 2150,
+ "name": "isWebSocketSupported",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 32,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2151,
+ "name": "isWebSocketSupported",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 32,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [2152]
+ },
+ {
+ "title": "Methods",
+ "children": [2146, 2140, 2150]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 28,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 839,
+ "name": "AdminUserAttributes",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 841,
+ "name": "app_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's application specific metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.app_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nOnly a service role can modify.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`app_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes app-specific info, such as identity providers, roles, and other\naccess control information."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 333,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 844,
+ "name": "ban_duration",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Determines how long a user is banned for.\n\nThe format for the ban duration follows a strict sequence of decimal numbers with a unit suffix.\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n\nFor example, some possible durations include: '300ms', '2h45m'.\n\nSetting the ban duration to 'none' lifts the ban on the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 356,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 849,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 290,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.email"
+ }
+ },
+ {
+ "id": 842,
+ "name": "email_confirm",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Confirms the user's email address if set to true.\n\nOnly a service role can modify."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 339,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 847,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`id`"
+ },
+ {
+ "kind": "text",
+ "text": " for the user.\n\nAllows you to overwrite the default "
+ },
+ {
+ "kind": "code",
+ "text": "`id`"
+ },
+ {
+ "kind": "text",
+ "text": " set for the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 378,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 848,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The nonce sent for reauthentication if the user's password is to be updated.\n\nCall reauthenticate() to obtain the nonce first."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 304,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.nonce"
+ }
+ },
+ {
+ "id": 850,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's password."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.password"
+ }
+ },
+ {
+ "id": 846,
+ "name": "password_hash",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`password_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " for the user's password.\n\nAllows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.\n\nSupports bcrypt, scrypt (firebase), and argon2 password hashes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 372,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 851,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 294,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.phone"
+ }
+ },
+ {
+ "id": 843,
+ "name": "phone_confirm",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Confirms the user's phone number if set to true.\n\nOnly a service role can modify."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 345,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 845,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`role`"
+ },
+ {
+ "kind": "text",
+ "text": " claim set in the user's access token JWT.\n\nWhen a user signs up, this role is set to "
+ },
+ {
+ "kind": "code",
+ "text": "`authenticated`"
+ },
+ {
+ "kind": "text",
+ "text": " by default. You should only modify the "
+ },
+ {
+ "kind": "code",
+ "text": "`role`"
+ },
+ {
+ "kind": "text",
+ "text": " if you need to provision several levels of admin access that have different permissions on individual columns in your database.\n\nSetting this role to "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " is not recommended as it grants the user admin privileges."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 364,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 840,
+ "name": "user_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`user_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name.\n\nNote: When using the GoTrueAdminApi and wanting to modify a user's metadata,\nthis attribute is used instead of UserAttributes data."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 324,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [841, 844, 849, 842, 847, 848, 850, 846, 851, 843, 845, 840]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 313,
+ "character": 17
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "data"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ]
+ },
+ {
+ "id": 799,
+ "name": "AMREntry",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An authentication methord reference (AMR) entry.\n\nAn entry designates what method was used by the user to verify their\nidentity and at what time."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
+ "target": 1221
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 800,
+ "name": "method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Authentication method name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 797,
+ "name": "AMRMethod",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 801,
+ "name": "timestamp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the method was successfully used. Represents number of\nseconds since 1st January 1970 (UNIX epoch) in UTC."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [800, 801]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 198,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1390,
+ "name": "AuthOAuthServerApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth 2.1 authorization server user-facing methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThese methods are used to implement the consent page."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1394,
+ "name": "approveAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1395,
+ "name": "approveAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Approves an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1396,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to approve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1397,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1398,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1399,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1367,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1399]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 60
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1400,
+ "name": "denyAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1401,
+ "name": "denyAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Denies an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1402,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to deny"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1403,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1404,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1405,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1378,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1405]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 57
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1391,
+ "name": "getAuthorizationDetails",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1357,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1392,
+ "name": "getAuthorizationDetails",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves details about an OAuth authorization request.\nUsed to display consent information to the user.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis method returns authorization details including client info, scopes, and user information.\nIf the response includes a redirect_uri, it means consent was already given - the caller\nshould handle the redirect manually if needed."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Authorization details including client info and requested scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1357,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1393,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID from the authorization request"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1386,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1394, 1400, 1391]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1344,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 37,
+ "name": "AuthSession",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 40,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 43,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 181,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 42,
+ "name": "expires_in",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 177,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 39,
+ "name": "provider_refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 38,
+ "name": "provider_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 41,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A one-time used refresh token that never expires."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 44,
+ "name": "token_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 182,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "id": 45,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 186,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [40, 43, 42, 39, 38, 41, 44, 45]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 156,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 11,
+ "name": "AuthUser",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 22,
+ "name": "action_link",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 270,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 13,
+ "name": "app_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 261,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 825,
+ "name": "UserAppMetadata",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 15,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 263,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 16,
+ "name": "confirmation_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 264,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 26,
+ "name": "confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 274,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 25,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 36,
+ "name": "deleted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 284,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 23,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 271,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 18,
+ "name": "email_change_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 266,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 27,
+ "name": "email_confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 275,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 35,
+ "name": "factors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 283,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": "verified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": "unverified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 12,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 260,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 32,
+ "name": "identities",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 280,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 21,
+ "name": "invited_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 269,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 33,
+ "name": "is_anonymous",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 281,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 34,
+ "name": "is_sso_user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 282,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 29,
+ "name": "last_sign_in_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 277,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 19,
+ "name": "new_email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 267,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 20,
+ "name": "new_phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 268,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 24,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 272,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 28,
+ "name": "phone_confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 276,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 17,
+ "name": "recovery_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 265,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 30,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 278,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 31,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 279,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 14,
+ "name": "user_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 829,
+ "name": "UserMetadata",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 22, 13, 15, 16, 26, 25, 36, 23, 18, 27, 35, 12, 32, 21, 33, 34, 29, 19, 20, 24, 28,
+ 17, 30, 31, 14
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1044,
+ "name": "GenerateLinkOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 1045,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 663,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 1046,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL which will be appended to the email link generated."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 665,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1045, 1046]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 657,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1237,
+ "name": "GoTrueAdminMFAApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains the full multi-factor authentication administration API."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1241,
+ "name": "deleteFactor",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 996,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1242,
+ "name": "deleteFactor",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes a factor on a user. This will log the user out of all active\nsessions if the deleted factor was verified."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#unenroll",
+ "target": 1210
+ }
+ ]
+ },
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 996,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1243,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1227,
+ "name": "AuthMFAAdminDeleteFactorParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1224,
+ "name": "AuthMFAAdminDeleteFactorResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1238,
+ "name": "listFactors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 987,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1239,
+ "name": "listFactors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all factors associated to a user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 987,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1240,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1234,
+ "name": "AuthMFAAdminListFactorsParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1231,
+ "name": "AuthMFAAdminListFactorsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1241, 1238]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 982,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1347,
+ "name": "GoTrueAdminOAuthApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth client administration methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1351,
+ "name": "createClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1257,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1352,
+ "name": "createClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1353,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1319,
+ "name": "CreateOAuthClientParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1361,
+ "name": "deleteClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1362,
+ "name": "deleteClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1363,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1364,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1365,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1279,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1366,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1280,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1365, 1366]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 44
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1354,
+ "name": "getClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1264,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1355,
+ "name": "getClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets details of a specific OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1264,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1356,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1348,
+ "name": "listClients",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1250,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1349,
+ "name": "listClients",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth clients with optional pagination.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1250,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1350,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1258,
+ "name": "PageParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1335,
+ "name": "OAuthClientListResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1367,
+ "name": "regenerateClientSecret",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1288,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1368,
+ "name": "regenerateClientSecret",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Regenerates the secret for an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1288,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1369,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1357,
+ "name": "updateClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1271,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1358,
+ "name": "updateClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates an existing OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1271,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1359,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1360,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1327,
+ "name": "UpdateOAuthClientParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1351, 1361, 1354, 1348, 1367, 1357]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1243,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1107,
+ "name": "GoTrueMFAApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains the full multi-factor authentication API."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1223,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 945,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.ts",
+ "qualifiedName": "WebAuthnApi"
+ },
+ "name": "WebAuthnApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1128,
+ "name": "challenge",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 900,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 901,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 902,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 903,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1129,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Prepares a challenge used to verify that a user has access to a MFA\nfactor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 900,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1130,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1131,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1132,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1132]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1133,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1134,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1135,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1134, 1135]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1136,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1137,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1138,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1141,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1139,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1140,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1141, 1139, 1140]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1142,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1137, 1142]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1143,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 901,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1144,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1145,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1147,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Messaging channel to use (e.g. whatsapp or sms). Only relevant for phone factors"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 749,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1146,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1147, 1146]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1148,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1149,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1150,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1149, 1150]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1151,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1152,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1153,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1156,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1154,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1155,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1156, 1154, 1155]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1157,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1152, 1157]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1158,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 902,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1159,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1160,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1161,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1162,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 754,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1163,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1164,
+ "name": "rpId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Relying party ID"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 756,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1165,
+ "name": "rpOrigins",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Relying party origins"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 758,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1164, 1165]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 754,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1161, 1162]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1166,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1167,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1168,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1167, 1168]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1169,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1170,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1171,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1174,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1172,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1173,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ },
+ {
+ "id": 1175,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 811,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1176,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1178,
+ "name": "credential_options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 813,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1179,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1180,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 814,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.dom.ts",
+ "qualifiedName": "PublicKeyCredentialCreationOptionsFuture"
+ },
+ "name": "PublicKeyCredentialCreationOptionsFuture",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1180]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 813,
+ "character": 28
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1177,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 812,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "create"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1178, 1177]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 811,
+ "character": 14
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1181,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1183,
+ "name": "credential_options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 818,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1184,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1185,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 819,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.dom.ts",
+ "qualifiedName": "PublicKeyCredentialRequestOptionsFuture"
+ },
+ "name": "PublicKeyCredentialRequestOptionsFuture",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1185]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 818,
+ "character": 28
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1182,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 817,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "request"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1183, 1182]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 816,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1174, 1172, 1173, 1175]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1186,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1170, 1186]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1187,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 903,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1188,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1077,
+ "name": "MFAChallengeParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1096,
+ "name": "AuthMFAChallengeResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1213,
+ "name": "challengeAndVerify",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 921,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1214,
+ "name": "challengeAndVerify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Helper method which creates a challenge and immediately uses the given code to verify against it thereafter. The verification code is\nprovided by the user by entering a code seen in their authenticator app."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 921,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1215,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1216,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1218,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1217,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1218, 1217]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1108,
+ "name": "enroll",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 892,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 893,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 894,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 895,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1109,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Starts the enrollment process for a new Multi-Factor Authentication (MFA)\nfactor. This method creates a new "
+ },
+ {
+ "kind": "code",
+ "text": "`unverified`"
+ },
+ {
+ "kind": "text",
+ "text": " factor.\nTo verify a factor, present the QR code or secret to the user and ask them to add it to their\nauthenticator app.\nThe user has to enter the code from their authenticator app to verify it.\n\nUpon verifying a factor, all other sessions are logged out and the current session's authenticator level is promoted to "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 892,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1110,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1111,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1112,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ }
+ },
+ {
+ "id": 1113,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1114,
+ "name": "issuer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Domain which the user is enrolled with."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1050,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1112, 1113, 1114]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1115,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 893,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1116,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1117,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1118,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ }
+ },
+ {
+ "id": 1119,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1120,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Phone number associated with a factor. Number should conform to E.164 format"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1055,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1118, 1119, 1120]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1121,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 894,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1122,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1123,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1124,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ },
+ {
+ "id": 1125,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1124, 1125]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1126,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 895,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1127,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1060,
+ "name": "MFAEnrollParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1087,
+ "name": "AuthMFAEnrollResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1221,
+ "name": "getAuthenticatorAssuranceLevel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 944,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1222,
+ "name": "getAuthenticatorAssuranceLevel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the Authenticator Assurance Level (AAL) for the active session.\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`aal1`"
+ },
+ {
+ "kind": "text",
+ "text": " (or "
+ },
+ {
+ "kind": "code",
+ "text": "`null`"
+ },
+ {
+ "kind": "text",
+ "text": ") means that the user's identity has been verified only\nwith a conventional login (email+password, OTP, magic link, social login,\netc.).\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": " means that the user's identity has been verified both with a conventional login and at least one MFA factor.\n\nAlthough this method returns a promise, it's fairly quick (microseconds)\nand rarely uses the network. You can use this to check whether the current\nuser needs to be shown a screen to verify their MFA factors."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 944,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1102,
+ "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1219,
+ "name": "listFactors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 930,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1220,
+ "name": "listFactors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the list of MFA factors enabled for this user."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#enroll",
+ "target": 1108
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
+ "target": 1221
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClient#getUser",
+ "target": 500
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 930,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1097,
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "tuple",
+ "elements": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "AuthMFAListFactorsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1210,
+ "name": "unenroll",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 916,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1211,
+ "name": "unenroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unenroll removes a MFA factor.\nA user has to have an "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": " authenticator level in order to unenroll a "
+ },
+ {
+ "kind": "code",
+ "text": "`verified`"
+ },
+ {
+ "kind": "text",
+ "text": " factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 916,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1212,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1061,
+ "name": "MFAUnenrollParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1088,
+ "name": "AuthMFAUnenrollResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1189,
+ "name": "verify",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 908,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 909,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 910,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 911,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1190,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verifies a code against a challenge. The verification code is\nprovided by the user by entering a code seen in their authenticator app."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 908,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1191,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1192,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1194,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1195,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1193,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1194, 1195, 1193]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1196,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 909,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1197,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1198,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1200,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1201,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1199,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1200, 1201, 1199]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1202,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 910,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1203,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1204,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1206,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1205,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1207,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 730,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
+ },
+ "name": "MFAVerifyWebauthnParamFieldsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ ],
+ "name": "MFAVerifyWebauthnCredentialParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1206, 1205, 1207]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1208,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 911,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1209,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1072,
+ "name": "MFAVerifyParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1223]
+ },
+ {
+ "title": "Methods",
+ "children": [1128, 1213, 1108, 1221, 1219, 1210, 1189]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 882,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1290,
+ "name": "JWK",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 1293,
+ "name": "alg",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1123,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1292,
+ "name": "key_ops",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1122,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1294,
+ "name": "kid",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1124,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1291,
+ "name": "kty",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1121,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1293, 1292, 1294, 1291]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1120,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1295,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1125,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1296,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 852,
+ "name": "Subscription",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 854,
+ "name": "callback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The function to call every time there is an event. eg: (eventName) => {}"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 855,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 856,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 857,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 858,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 853,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The subscriber UUID. This will be set by the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 384,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 859,
+ "name": "unsubscribe",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Call this to remove the listener."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 860,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 861,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 17
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [854, 853, 859]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 380,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 825,
+ "name": "UserAppMetadata",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 826,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 253,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [826]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 252,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 827,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 254,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 828,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 833,
+ "name": "UserAttributes",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 838,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 311,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 834,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 290,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 837,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The nonce sent for reauthentication if the user's password is to be updated.\n\nCall reauthenticate() to obtain the nonce first."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 304,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 836,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's password."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 835,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 294,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [838, 834, 837, 836, 835]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 286,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 802,
+ "name": "UserIdentity",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 811,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 215,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 803,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 208,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 805,
+ "name": "identity_data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 210,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 806,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 210,
+ "character": 20
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 807,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 211,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 808,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 809,
+ "name": "identity_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 213,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 812,
+ "name": "last_sign_in_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 216,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 810,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 214,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 813,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 804,
+ "name": "user_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 209,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [811, 803, 805, 809, 812, 810, 813, 804]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 207,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 829,
+ "name": "UserMetadata",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 256,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 830,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 831,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 982,
+ "name": "VerifyEmailOtpParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 983,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 570,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 986,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 575,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 987,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 989,
+ "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."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 582,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 988,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 577,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [989, 988]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 575,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 984,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The otp sent to the user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 572,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 985,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 574,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [983, 986, 984, 985]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 568,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 974,
+ "name": "VerifyMobileOtpParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 978,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 557,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 979,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 981,
+ "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."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 565,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 980,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 559,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [981, 980]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 557,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 975,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 552,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 976,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The otp sent to the user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 554,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 977,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 556,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 993,
+ "name": "MobileOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [978, 975, 976, 977]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 550,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 990,
+ "name": "VerifyTokenHashParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 991,
+ "name": "token_hash",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The token hash used in an email link"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 587,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 992,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 589,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [991, 992]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 585,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 2154,
+ "name": "WebSocketLike",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 2197,
+ "name": "binaryType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2198,
+ "name": "bufferedAmount",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2158,
+ "name": "CLOSED",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 5,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2157,
+ "name": "CLOSING",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 4,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2155,
+ "name": "CONNECTING",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 2,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2200,
+ "name": "dispatchEvent",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2201,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 20
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2202,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 20
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2203,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2199,
+ "name": "extensions",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2179,
+ "name": "onclose",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2180,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2181,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2182,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2183,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "CloseEvent"
+ },
+ "name": "CloseEvent",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2184,
+ "name": "onerror",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2185,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2186,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2187,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2188,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2174,
+ "name": "onmessage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2175,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 16
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2176,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 16
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2177,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2178,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "MessageEvent"
+ },
+ "name": "MessageEvent",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2169,
+ "name": "onopen",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2170,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2171,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2172,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2173,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2156,
+ "name": "OPEN",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 3,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2161,
+ "name": "protocol",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 8,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2159,
+ "name": "readyState",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 6,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2160,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 7,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2189,
+ "name": "addEventListener",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 15,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2190,
+ "name": "addEventListener",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 15,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2191,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2192,
+ "name": "listener",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "EventListener"
+ },
+ "name": "EventListener",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2162,
+ "name": "close",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2163,
+ "name": "close",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2164,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2165,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2193,
+ "name": "removeEventListener",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2194,
+ "name": "removeEventListener",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2195,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2196,
+ "name": "listener",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "EventListener"
+ },
+ "name": "EventListener",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2166,
+ "name": "send",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2167,
+ "name": "send",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2168,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferLike"
+ },
+ "name": "ArrayBufferLike",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferView"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferLike"
+ },
+ "name": "ArrayBufferLike",
+ "package": "typescript"
+ }
+ ],
+ "name": "ArrayBufferView",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 2197, 2198, 2158, 2157, 2155, 2200, 2199, 2179, 2184, 2174, 2169, 2156, 2161, 2159,
+ 2160
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [2189, 2162, 2193, 2166]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 1,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 2204,
+ "name": "WebSocketLikeConstructor",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 2205,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 24,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2206,
+ "name": "WebSocketLikeConstructor",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 25,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2207,
+ "name": "address",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2208,
+ "name": "subprotocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [2205]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 24,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2209,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 26,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2210,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 797,
+ "name": "AMRMethod",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 189,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMRMethods"
+ },
+ "name": "AMRMethods",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 798,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 189,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "id": 695,
+ "name": "AuthChangeEvent",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 10,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "reference",
+ "target": 694,
+ "name": "AuthChangeEventMFA",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 694,
+ "name": "AuthChangeEventMFA",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 9,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED"
+ }
+ },
+ {
+ "id": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 860,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "aal1"
+ },
+ {
+ "type": "literal",
+ "value": "aal2"
+ }
+ ]
+ }
+ },
+ {
+ "id": 898,
+ "name": "AuthFlowType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 461,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "implicit"
+ },
+ {
+ "type": "literal",
+ "value": "pkce"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1227,
+ "name": "AuthMFAAdminDeleteFactorParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 957,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1228,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1229,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the MFA factor to delete."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 959,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1230,
+ "name": "userId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the user whose factor is being deleted."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 961,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1229, 1230]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 957,
+ "character": 45
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1224,
+ "name": "AuthMFAAdminDeleteFactorResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 950,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1225,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1226,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor that was successfully deleted."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 952,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1226]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 950,
+ "character": 61
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1234,
+ "name": "AuthMFAAdminListFactorsParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 973,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1235,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1236,
+ "name": "userId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 975,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1236]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 973,
+ "character": 44
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1231,
+ "name": "AuthMFAAdminListFactorsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 966,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1232,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1233,
+ "name": "factors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "All factors attached to the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 968,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 815,
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1233]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 966,
+ "character": 60
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1092,
+ "name": "AuthMFAChallengePhoneResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 809,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengePhoneResponseFields"
+ },
+ "name": "AuthMFAChallengePhoneResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1096,
+ "name": "AuthMFAChallengeResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 852,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1091,
+ "name": "AuthMFAChallengeTOTPResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1092,
+ "name": "AuthMFAChallengePhoneResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1093,
+ "name": "AuthMFAChallengeWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1091,
+ "name": "AuthMFAChallengeTOTPResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 807,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeTOTPResponseFields"
+ },
+ "name": "AuthMFAChallengeTOTPResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1093,
+ "name": "AuthMFAChallengeWebauthnResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for WebAuthn MFA challenge.\nContains credential creation or request options from the server."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Credential Creation",
+ "target": "https://w3c.github.io/webauthn/#sctn-credential-creation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 828,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseFields"
+ },
+ "name": "AuthMFAChallengeWebauthnResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1094,
+ "name": "AuthMFAChallengeWebauthnResponseDataJSON",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "JSON-serializable version of WebAuthn challenge response.\nUsed for server communication with base64url-encoded binary fields."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 846,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseFieldsJSON"
+ },
+ "name": "AuthMFAChallengeWebauthnResponseFieldsJSON",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1095,
+ "name": "AuthMFAChallengeWebauthnServerResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Server response type for WebAuthn MFA challenge.\nContains JSON-formatted WebAuthn options ready for browser API."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 851,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1094,
+ "name": "AuthMFAChallengeWebauthnResponseDataJSON",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1094,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollPhoneResponseFields"
+ },
+ "name": "AuthMFAEnrollPhoneResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1087,
+ "name": "AuthMFAEnrollResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 793,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1089,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollTOTPResponseFields"
+ },
+ "name": "AuthMFAEnrollTOTPResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for WebAuthn factor enrollment.\nReturns the enrolled factor ID and metadata."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Registering a New Credential",
+ "target": "https://w3c.github.io/webauthn/#sctn-registering-a-new-credential"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1101,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollWebauthnFields"
+ },
+ "name": "AuthMFAEnrollWebauthnFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1102,
+ "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 861,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1103,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1106,
+ "name": "currentAuthenticationMethods",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A list of all authentication methods attached to this session. Use\nthe information here to detect the last time a user verified a\nfactor, for example if implementing a step-up scenario."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 876,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 799,
+ "name": "AMREntry",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1104,
+ "name": "currentLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Current AAL level of the session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 863,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 1105,
+ "name": "nextLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Next possible AAL level for the session. If the next level is higher\nthan the current one, the user should go through MFA."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#challenge",
+ "target": 1128
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 870,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1106, 1104, 1105]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 861,
+ "character": 74
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1097,
+ "name": "AuthMFAListFactorsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "response of ListFactors, which should contain all the types of factors that are available, this ensures we always include all"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 854,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1100,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ },
+ "default": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1098,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1099,
+ "name": "all",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "All available factors (verified and unverified)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 856,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 815,
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1099]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 854,
+ "character": 106
+ }
+ ]
+ }
+ },
+ {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 1100,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "verified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1088,
+ "name": "AuthMFAUnenrollResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 794,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1089,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1090,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor that was successfully unenrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 796,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1090]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 794,
+ "character": 52
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for MFA verification operations.\nReturns session tokens on successful verification."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 792,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1079,
+ "name": "AuthMFAVerifyResponseData",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1079,
+ "name": "AuthMFAVerifyResponseData",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Data returned after successful MFA verification.\nContains new session tokens and updated user information."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 776,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1080,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1081,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "New access token (JWT) after successful verification."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 778,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1083,
+ "name": "expires_in",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of seconds in which the access token will expire."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 782,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1084,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 784,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1082,
+ "name": "token_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of token, always "
+ },
+ {
+ "kind": "code",
+ "text": "`bearer`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 780,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "id": 1085,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updated user profile."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 786,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1081, 1083, 1084, 1082, 1085]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 776,
+ "character": 40
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1386,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for getting OAuth authorization details.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1329,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1376,
+ "name": "OAuthAuthorizationDetails",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for OAuth consent decision (approve/deny).\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1334,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1388,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1389,
+ "name": "redirect_url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to redirect the user back to the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1336,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1389]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1334,
+ "character": 53
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 763,
+ "name": "AuthOtpResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "AuthOtpResponse is returned when OTP is used.\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "AuthResponse"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 116,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 764,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 767,
+ "name": "messageId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 119,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 766,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 118,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 765,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [767, 766, 765]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 116,
+ "character": 59
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 754,
+ "name": "AuthResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 102,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 755,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 757,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 104,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 756,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 103,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [757, 756]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 102,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 758,
+ "name": "AuthResponsePassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 106,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 759,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 761,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 108,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 760,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 107,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 762,
+ "name": "weak_password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 728,
+ "name": "WeakPassword",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [761, 760, 762]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 106,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 768,
+ "name": "AuthTokenResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 121,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 769,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 771,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 123,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 770,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 122,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [771, 770]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 121,
+ "character": 61
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 772,
+ "name": "AuthTokenResponsePassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 125,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 773,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 775,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 127,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 774,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 776,
+ "name": "weakPassword",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 128,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 728,
+ "name": "WeakPassword",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [775, 774, 776]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 125,
+ "character": 69
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1250,
+ "name": "CallRefreshTokenResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1016,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1319,
+ "name": "CreateOAuthClientParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for creating a new OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1187,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1320,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1321,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1189,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1322,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1191,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1324,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types (optional, defaults to authorization_code and refresh_token)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1195,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1323,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1193,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1325,
+ "name": "response_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed response types (optional, defaults to code)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1197,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1300,
+ "name": "OAuthClientResponseType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1326,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scope of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1199,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1321, 1322, 1324, 1323, 1325, 1326]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1187,
+ "character": 38
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 994,
+ "name": "EmailOtpType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 592,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ },
+ {
+ "type": "literal",
+ "value": "email"
+ }
+ ]
+ }
+ },
+ {
+ "id": 954,
+ "name": "EthereumWallet",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 523,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "EIP1193Provider"
+ },
+ "name": "EIP1193Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 955,
+ "name": "EthereumWeb3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 524,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 956,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 957,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 525,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "id": 960,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 530,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 961,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 963,
+ "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/dist/module/lib/types.d.ts",
+ "line": 534,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 964,
+ "name": "signInWithEthereum",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 535,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "EthereumSignInInput"
+ },
+ "name": "EthereumSignInInput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "version"
+ },
+ {
+ "type": "literal",
+ "value": "domain"
+ },
+ {
+ "type": "literal",
+ "value": "uri"
+ },
+ {
+ "type": "literal",
+ "value": "statement"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 962,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 532,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [963, 964, 962]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 530,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 959,
+ "name": "statement",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 529,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 958,
+ "name": "wallet",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Wallet interface to use. If not specified will default to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.ethereum`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 527,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 954,
+ "name": "EthereumWallet",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [957, 960, 959, 958]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 524,
+ "character": 38
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 965,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 966,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 538,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "id": 967,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sign in with Ethereum compatible message. Must include "
+ },
+ {
+ "kind": "code",
+ "text": "`Issued At`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`URI`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`Version`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 540,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 969,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 543,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 970,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 971,
+ "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/dist/module/lib/types.d.ts",
+ "line": 545,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [971]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 543,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 968,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Ethereum curve (secp256k1) signature of the message."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 542,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "Hex"
+ },
+ "name": "Hex",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [966, 967, 969, 968]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 537,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 815,
+ "name": "Factor",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A MFA factor."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#enroll",
+ "target": 1108
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#listFactors",
+ "target": 1219
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAAdminApi#listFactors"
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 236,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 823,
+ "name": "Type",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 814,
+ "name": "FactorType",
+ "package": "@supabase/auth-js"
+ },
+ "default": {
+ "type": "reference",
+ "target": 814,
+ "name": "FactorType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 824,
+ "name": "Status",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorVerificationStatus"
+ },
+ "name": "FactorVerificationStatus",
+ "package": "@supabase/auth-js"
+ },
+ "default": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorVerificationStatuses"
+ },
+ "name": "FactorVerificationStatuses",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 816,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 821,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 249,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 819,
+ "name": "factor_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of factor. "
+ },
+ {
+ "kind": "code",
+ "text": "`totp`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`phone`"
+ },
+ {
+ "kind": "text",
+ "text": " supported with this version"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 244,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 823,
+ "name": "Type",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 818,
+ "name": "friendly_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 240,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 817,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 238,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 820,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The verification status of the factor, default is "
+ },
+ {
+ "kind": "code",
+ "text": "`unverified`"
+ },
+ {
+ "kind": "text",
+ "text": " after "
+ },
+ {
+ "kind": "code",
+ "text": "`.enroll()`"
+ },
+ {
+ "kind": "text",
+ "text": ", then "
+ },
+ {
+ "kind": "code",
+ "text": "`verified`"
+ },
+ {
+ "kind": "text",
+ "text": " after the user verifies it with "
+ },
+ {
+ "kind": "code",
+ "text": "`.verify()`"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 248,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 824,
+ "name": "Status",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 822,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 250,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [821, 819, 818, 817, 820, 822]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 236,
+ "character": 146
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 814,
+ "name": "FactorType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of factor. "
+ },
+ {
+ "kind": "code",
+ "text": "`totp`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`phone`"
+ },
+ {
+ "kind": "text",
+ "text": " supported with this version"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 223,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 86,
+ "name": "FunctionInvokeOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 46,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 87,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 94,
+ "name": "body",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The body of the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 64,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "File"
+ },
+ "name": "File",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBuffer"
+ },
+ "name": "ArrayBuffer",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "FormData"
+ },
+ "name": "FormData",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "ReadableStream"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ ],
+ "name": "ReadableStream",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 88,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Object representing the headers to send with the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 89,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 90,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 51,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 91,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 92,
+ "name": "method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The HTTP verb of the request"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "POST"
+ },
+ {
+ "type": "literal",
+ "value": "GET"
+ },
+ {
+ "type": "literal",
+ "value": "PUT"
+ },
+ {
+ "type": "literal",
+ "value": "PATCH"
+ },
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ]
+ }
+ },
+ {
+ "id": 93,
+ "name": "region",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The Region to invoke the function in."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 60,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 96,
+ "name": "FunctionRegion",
+ "package": "@supabase/functions-js"
+ }
+ },
+ {
+ "id": 95,
+ "name": "signal",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The AbortSignal to use for the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 68,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "AbortSignal"
+ },
+ "name": "AbortSignal",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [94, 88, 92, 93, 95]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 46,
+ "character": 36
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1038,
+ "name": "GenerateEmailChangeLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 647,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1039,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1041,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 650,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1042,
+ "name": "newEmail",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's new email. Only required if type is 'email_change_current' or 'email_change_new'."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 654,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1043,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 655,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1040,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 648,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1041, 1042, 1043, 1040]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 647,
+ "character": 44
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1028,
+ "name": "GenerateInviteOrMagiclinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 635,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1029,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1031,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 638,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1032,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 639,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "data"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1030,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 636,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1031, 1032, 1030]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 635,
+ "character": 46
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1047,
+ "name": "GenerateLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 667,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1022,
+ "name": "GenerateSignupLinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1028,
+ "name": "GenerateInviteOrMagiclinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1033,
+ "name": "GenerateRecoveryLinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1038,
+ "name": "GenerateEmailChangeLinkParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1052,
+ "name": "GenerateLinkProperties",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The properties related to the email link generated"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 673,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1053,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1054,
+ "name": "action_link",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email link to send to the user.\nThe action_link follows the following format: auth/v1/verify?type={verification_type}&token={hashed_token}&redirect_to={redirect_to}"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 678,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1055,
+ "name": "email_otp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The raw email OTP.\nYou should send this in the email if you want your users to verify using an OTP instead of the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 683,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1056,
+ "name": "hashed_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The hashed token appended to the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 687,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1057,
+ "name": "redirect_to",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL appended to the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 689,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1058,
+ "name": "verification_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The verification type that the email link is associated to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 691,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1059,
+ "name": "GenerateLinkType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1054, 1055, 1056, 1057, 1058]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 673,
+ "character": 37
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1048,
+ "name": "GenerateLinkResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 668,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1049,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1050,
+ "name": "properties",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 669,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1052,
+ "name": "GenerateLinkProperties",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1051,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 670,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1050, 1051]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 668,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1059,
+ "name": "GenerateLinkType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 693,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1033,
+ "name": "GenerateRecoveryLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 641,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1034,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1036,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 644,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1037,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 645,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1035,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 642,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "recovery"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1036, 1037, 1035]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 641,
+ "character": 41
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1022,
+ "name": "GenerateSignupLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 629,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1023,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1025,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 631,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1027,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 633,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "data"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1026,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 632,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1024,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 630,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "signup"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1025, 1027, 1026, 1024]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 629,
+ "character": 39
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 705,
+ "name": "GoTrueClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 27,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 706,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 714,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 720,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 47,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 721,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 47,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 722,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 723,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 724,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 713,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 33,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 718,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 45,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/fetch.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 719,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 46,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 898,
+ "name": "AuthFlowType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 726,
+ "name": "hasCustomAuthorizationHeader",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Set to \"true\" if there is a custom authorization header set globally."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 58,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 708,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 709,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 29,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 710,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 30,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 711,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 725,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 696,
+ "name": "LockFunc",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 715,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 716,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 712,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 707,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 717,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Stores the user object in a separate storage location from the rest of the session data. When non-null, "
+ },
+ {
+ "kind": "code",
+ "text": "`storage`"
+ },
+ {
+ "kind": "text",
+ "text": " will only store a JSON object containing the access and refresh token and some adjacent metadata, while "
+ },
+ {
+ "kind": "code",
+ "text": "`userStorage`"
+ },
+ {
+ "kind": "text",
+ "text": " will only contain the user object under the key "
+ },
+ {
+ "kind": "code",
+ "text": "`storageKey + '-user'`"
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nWhen this option is set and cookie storage is used, "
+ },
+ {
+ "kind": "code",
+ "text": "`getSession()`"
+ },
+ {
+ "kind": "text",
+ "text": " and other functions that load a session from the cookie store might not return back a user. It's very important to always use "
+ },
+ {
+ "kind": "code",
+ "text": "`getUser()`"
+ },
+ {
+ "kind": "text",
+ "text": " to fetch a user object in those scenarios."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 44,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [714, 720, 713, 718, 719, 726, 708, 725, 715, 716, 712, 707, 717]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 27,
+ "character": 34
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1247,
+ "name": "InitializeResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1013,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1248,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1249,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1014,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1249]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1013,
+ "character": 31
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1271,
+ "name": "JwtHeader",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1102,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1272,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1273,
+ "name": "alg",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1103,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "RS256"
+ },
+ {
+ "type": "literal",
+ "value": "ES256"
+ },
+ {
+ "type": "literal",
+ "value": "HS256"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1274,
+ "name": "kid",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1104,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1275,
+ "name": "typ",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1105,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1273, 1274, 1275]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1102,
+ "character": 24
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1286,
+ "name": "JwtPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1117,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1276,
+ "name": "RequiredClaims",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1287,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1117,
+ "character": 42
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1288,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1118,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1289,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 696,
+ "name": "LockFunc",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own global lock implementation instead of the default\nimplementation. The function should acquire a lock for the duration of the\n"
+ },
+ {
+ "kind": "code",
+ "text": "`fn`"
+ },
+ {
+ "kind": "text",
+ "text": " async function, such that no other client instances will be able to\nhold it at the same time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 697,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 698,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "typeParameters": [
+ {
+ "id": 704,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 699,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 700,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout should occur. If positive it\n should throw an Error with an "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": "\n property set to true if the operation fails to be\n acquired after this much time (ms)."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 701,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to execute when the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 702,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 69
+ }
+ ],
+ "signatures": [
+ {
+ "id": 703,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 704,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 704,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1078,
+ "name": "MFAChallengeAndVerifyParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 771,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeAndVerifyTOTPParams"
+ },
+ "name": "MFAChallengeAndVerifyTOTPParams",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1077,
+ "name": "MFAChallengeParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 767,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1074,
+ "name": "MFAChallengeTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1075,
+ "name": "MFAChallengePhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1076,
+ "name": "MFAChallengeWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1075,
+ "name": "MFAChallengePhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 751,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengePhoneParamFields"
+ },
+ "name": "MFAChallengePhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1074,
+ "name": "MFAChallengeTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 746,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1076,
+ "name": "MFAChallengeWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for initiating a WebAuthn MFA challenge.\nIncludes Relying Party information needed for WebAuthn ceremonies."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Relying Party Operations",
+ "target": "https://w3c.github.io/webauthn/#sctn-rp-operations"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 766,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeWebauthnParamFields"
+ },
+ "name": "MFAChallengeWebauthnParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1060,
+ "name": "MFAEnrollParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 694,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1265,
+ "name": "MFAEnrollTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1266,
+ "name": "MFAEnrollPhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1267,
+ "name": "MFAEnrollWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1266,
+ "name": "MFAEnrollPhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1057,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollPhoneParamFields"
+ },
+ "name": "MFAEnrollPhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1265,
+ "name": "MFAEnrollTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1052,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollTOTPParamFields"
+ },
+ "name": "MFAEnrollTOTPParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1267,
+ "name": "MFAEnrollWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for enrolling a WebAuthn factor.\nCreates an unverified WebAuthn factor that must be verified with a credential."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Registering a New Credential",
+ "target": "https://w3c.github.io/webauthn/#sctn-registering-a-new-credential"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1064,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollWebauthnFields"
+ },
+ "name": "MFAEnrollWebauthnFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1073,
+ "name": "MFATOTPChannel",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 745,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFATOTPChannels"
+ },
+ "name": "MFATOTPChannels",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 1061,
+ "name": "MFAUnenrollParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 695,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1062,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1063,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being unenrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 697,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1063]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 695,
+ "character": 32
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1072,
+ "name": "MFAVerifyParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 739,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1064,
+ "name": "MFAVerifyTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1065,
+ "name": "MFAVerifyPhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1070,
+ "name": "MFAVerifyWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1065,
+ "name": "MFAVerifyPhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 711,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyPhoneParamFields"
+ },
+ "name": "MFAVerifyPhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1064,
+ "name": "MFAVerifyTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 709,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyTOTPParamFields"
+ },
+ "name": "MFAVerifyTOTPParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1066,
+ "name": "MFAVerifyWebauthnParamFields",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "WebAuthn-specific fields for MFA verification.\nSupports both credential creation (registration) and request (authentication) flows."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 729,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1069,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ },
+ "default": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1067,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1068,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 730,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
+ },
+ "name": "MFAVerifyWebauthnParamFieldsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1069,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnCredentialParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1068]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 729,
+ "character": 98
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1070,
+ "name": "MFAVerifyWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for WebAuthn MFA verification.\nUsed to verify WebAuthn credentials after challenge."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Verifying an Authentication Assertion",
+ "target": "https://w3c.github.io/webauthn/#sctn-verifying-assertion"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 738,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1071,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ },
+ "default": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1066,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1071,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 993,
+ "name": "MobileOtpType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 591,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1370,
+ "name": "OAuthAuthorizationClient",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client details in an authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1294,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1371,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1372,
+ "name": "client_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the OAuth client (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1296,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1373,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1374,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's website"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1300,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1375,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1302,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1372, 1373, 1374, 1375]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1294,
+ "character": 39
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1376,
+ "name": "OAuthAuthorizationDetails",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth authorization details for the consent flow.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1308,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1377,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1378,
+ "name": "authorization_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1310,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1380,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client requesting authorization"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1314,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1370,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1379,
+ "name": "redirect_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Redirect URI - present if user already consented (can be used to trigger immediate redirect)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1312,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1385,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Space-separated list of requested scopes"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1323,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1381,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User object associated with the authorization"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1316,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1382,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1384,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1320,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1383,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User ID (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1318,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1384, 1383]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1316,
+ "character": 10
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1378, 1380, 1379, 1385, 1381]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1308,
+ "character": 40
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1303,
+ "name": "OAuthClient",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client object returned from the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1153,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1304,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1305,
+ "name": "client_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1155,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1306,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1157,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1307,
+ "name": "client_secret",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Client secret (only returned on registration and regeneration)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1159,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1308,
+ "name": "client_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1161,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1301,
+ "name": "OAuthClientType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1311,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1167,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1317,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the client was created"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1179,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1314,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1173,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1312,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1169,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1313,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1171,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1310,
+ "name": "registration_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Registration type of the client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1165,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1302,
+ "name": "OAuthClientRegistrationType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1315,
+ "name": "response_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed response types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1175,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1300,
+ "name": "OAuthClientResponseType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1316,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scope of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1177,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1309,
+ "name": "token_endpoint_auth_method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token endpoint authentication method"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1163,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1318,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the client was last updated"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1181,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 1305, 1306, 1307, 1308, 1311, 1317, 1314, 1312, 1313, 1310, 1315, 1316, 1309,
+ 1318
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1153,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1299,
+ "name": "OAuthClientGrantType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client grant types supported by the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1133,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1335,
+ "name": "OAuthClientListResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing OAuth clients.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1227,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1336,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1337,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1228,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1338,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1340,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1230,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1339,
+ "name": "clients",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1229,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1303,
+ "name": "OAuthClient",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1340, 1339]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1228,
+ "character": 10
+ }
+ ]
+ }
+ },
+ {
+ "type": "reference",
+ "target": 1251,
+ "name": "Pagination",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1341,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1232,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1337, 1341]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1227,
+ "character": 38
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1342,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1343,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1234,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1344,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1345,
+ "name": "clients",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1235,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "tuple"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1345]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1234,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1346,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1237,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1343, 1346]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1233,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1302,
+ "name": "OAuthClientRegistrationType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client registration type.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1148,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1334,
+ "name": "OAuthClientResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for OAuth client operations.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1222,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1303,
+ "name": "OAuthClient",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1300,
+ "name": "OAuthClientResponseType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client response types supported by the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1138,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "code"
+ }
+ },
+ {
+ "id": 1301,
+ "name": "OAuthClientType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client type indicating whether the client can keep credentials confidential.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1143,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ }
+ },
+ {
+ "id": 777,
+ "name": "OAuthResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 130,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 778,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 779,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 131,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 780,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 781,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 132,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 782,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 133,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [781, 782]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 131,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 783,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 135,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [779, 783]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 130,
+ "character": 28
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 784,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 785,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 786,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 787,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 138,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 788,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 139,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [787, 788]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 137,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 789,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 141,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [785, 789]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 136,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1258,
+ "name": "PageParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1023,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1259,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1260,
+ "name": "page",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The page number"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1025,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1261,
+ "name": "perPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of items returned per page"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1027,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1260, 1261]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1023,
+ "character": 25
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1251,
+ "name": "Pagination",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1017,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1252,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1254,
+ "name": "lastPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1020,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1253,
+ "name": "nextPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1019,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 1255,
+ "name": "total",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1021,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1254, 1253, 1255]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1017,
+ "character": 25
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1256,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1018,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1257,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 50,
+ "name": "PostgrestMaybeSingleResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 25,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 51,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 48,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 51,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "PostgrestSingleResponse",
+ "package": "@supabase/postgrest-js"
+ }
+ },
+ {
+ "id": 46,
+ "name": "PostgrestResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 26,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 47,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 48,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 47,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "name": "PostgrestSingleResponse",
+ "package": "@supabase/postgrest-js"
+ }
+ },
+ {
+ "id": 48,
+ "name": "PostgrestSingleResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 24,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 49,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponseSuccess"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 49,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestResponseSuccess",
+ "package": "@supabase/postgrest-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponseFailure"
+ },
+ "name": "PostgrestResponseFailure",
+ "package": "@supabase/postgrest-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 732,
+ "name": "Prettify",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resolve mapped types and show the derived keys and their types when hovering in\nVS Code, instead of just showing the names those mapped types are defined with."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 733,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 693,
+ "name": "Provider",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of the providers supported by GoTrue."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 8,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "id": 270,
+ "name": "QueryData",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 273,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 273,
+ "name": "T",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 271,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 272,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 51,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ],
+ "type": {
+ "type": "inferred",
+ "name": "U"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [272]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 49,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "U"
+ },
+ "name": "U",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 274,
+ "name": "QueryError",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 116,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L116"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 52,
+ "name": "PostgrestError",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 268,
+ "name": "QueryResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Helper types for query results."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 114,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L114"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 269,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 269,
+ "name": "T",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "inferred",
+ "name": "U"
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "U"
+ },
+ "name": "U",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 1887,
+ "name": "RealtimeChannelOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 11,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1888,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1889,
+ "name": "config",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1890,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1891,
+ "name": "broadcast",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "self option enables client to receive message it broadcast\nack option instructs server to acknowledge that broadcast message was received\nreplay option instructs server to replay broadcast messages"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 18,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1892,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1894,
+ "name": "ack",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 20,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1895,
+ "name": "replay",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 21,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "ReplayOption"
+ },
+ "name": "ReplayOption",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1893,
+ "name": "self",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 19,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1894, 1895, 1893]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 18,
+ "character": 20
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1896,
+ "name": "presence",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "key option is used to track presence payload across clients"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 26,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1897,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1899,
+ "name": "enabled",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 28,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1898,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 27,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1899, 1898]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 26,
+ "character": 19
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1900,
+ "name": "private",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 33,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1891, 1896, 1900]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 12,
+ "character": 12
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1889]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 11,
+ "character": 37
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 115,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2011,
+ "name": "RealtimeClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 33,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2012,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2037,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2038,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 53,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2039,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2022,
+ "name": "decode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 40,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2021,
+ "name": "encode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2034,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2024,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 42,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2025,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 42,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2026,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 43,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2027,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2016,
+ "name": "heartbeatCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 37,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2017,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 37,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2018,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 2019,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2015,
+ "name": "heartbeatIntervalMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2032,
+ "name": "log_level",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 48,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2020,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2033,
+ "name": "logLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 49,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2028,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 45,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2029,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 45,
+ "character": 13
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2030,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 46,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2031,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2023,
+ "name": "reconnectAfterMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 41,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2014,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2013,
+ "name": "transport",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2204,
+ "name": "WebSocketLikeConstructor",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2035,
+ "name": "worker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 2036,
+ "name": "workerUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 52,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 2037, 2022, 2021, 2034, 2024, 2016, 2015, 2032, 2020, 2033, 2028, 2023, 2014,
+ 2013, 2035, 2036
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 33,
+ "character": 36
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2040,
+ "name": "RealtimeMessage",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 15,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2041,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2043,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2046,
+ "name": "join_ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 20,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2044,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2045,
+ "name": "ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2042,
+ "name": "topic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2043, 2046, 2044, 2045, 2042]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 15,
+ "character": 30
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2047,
+ "name": "RealtimePostgresChangesFilter",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 97,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2053,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2123,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2048,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2049,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of database change to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2053,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2052,
+ "name": "filter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Receive database changes when filter is matched."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 113,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2050,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The database schema to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 105,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2051,
+ "name": "table",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The database table to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2049, 2052, 2050, 2051]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 97,
+ "character": 99
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2054,
+ "name": "RealtimePostgresChangesPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 94,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2055,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2056,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 94,
+ "character": 53
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2057,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 95,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2058,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 2059,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresInsertPayload",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reference",
+ "target": 2069,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresUpdatePayload",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reference",
+ "target": 2078,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2078,
+ "name": "RealtimePostgresDeletePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 87,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2084,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2085,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 87,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2086,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2087,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2079,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2080,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2127,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2081,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 91,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2082,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 91,
+ "character": 9
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2083,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 92,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2084,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2080, 2081, 2083]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 89,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2059,
+ "name": "RealtimePostgresInsertPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 73,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2065,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2066,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 73,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2067,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 74,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2068,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2060,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2061,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 76,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2125,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2062,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 77,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2065,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2063,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 78,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2064,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 78,
+ "character": 9
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2061, 2062, 2063]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 75,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2069,
+ "name": "RealtimePostgresUpdatePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 80,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2074,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2075,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 80,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2076,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2077,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2070,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2071,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2126,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2072,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2074,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2073,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 85,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2074,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2071, 2072, 2073]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 82,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2088,
+ "name": "RealtimePresenceJoinPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 13,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2094,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2095,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 13,
+ "character": 50
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2096,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2097,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2089,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2092,
+ "name": "currentPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2094,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 2090,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2130,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2091,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2093,
+ "name": "newPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2094,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2092, 2090, 2091, 2093]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 15,
+ "character": 5
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2098,
+ "name": "RealtimePresenceLeavePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 21,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2104,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2105,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 21,
+ "character": 51
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2106,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 22,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2107,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2099,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2102,
+ "name": "currentPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 26,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2104,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 2100,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2131,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2101,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 25,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2103,
+ "name": "leftPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2104,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2102, 2100, 2101, 2103]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 23,
+ "character": 5
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2108,
+ "name": "RealtimePresenceState",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 8,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2112,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2113,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 8,
+ "character": 44
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2114,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2115,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2116,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2109,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 10,
+ "character": 10
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2110,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2111,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2112,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 22,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ },
+ {
+ "id": 737,
+ "name": "RequestResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "a shared result type that encapsulates errors instead of throwing them, allows you to optionally specify the ErrorType"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 82,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 744,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ },
+ {
+ "id": 745,
+ "name": "ErrorType",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ },
+ "default": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 738,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 739,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 744,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 740,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [739, 740]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 82,
+ "character": 68
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 741,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 742,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 743,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "falseType": {
+ "type": "reference",
+ "target": 745,
+ "name": "ErrorType",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [742, 743]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 85,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 746,
+ "name": "RequestResultSafeDestructure",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "similar to RequestResult except it allows you to destructure the possible shape of the success response\n "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "RequestResult"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 93,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 753,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 747,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 748,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 749,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 95,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [748, 749]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 93,
+ "character": 46
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 750,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 751,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 97,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "trueType": {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ "falseType": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ },
+ {
+ "id": 752,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 100,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [751, 752]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 96,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1276,
+ "name": "RequiredClaims",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1107,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1277,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1284,
+ "name": "aal",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1114,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1280,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1110,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1281,
+ "name": "exp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1111,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1282,
+ "name": "iat",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1112,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1278,
+ "name": "iss",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1108,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1283,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1113,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1285,
+ "name": "session_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1115,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1279,
+ "name": "sub",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1284, 1280, 1281, 1282, 1278, 1283, 1285, 1279]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1107,
+ "character": 29
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 995,
+ "name": "ResendParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 593,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 996,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 998,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 595,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 999,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 596,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1000,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1002,
+ "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/dist/module/lib/types.d.ts",
+ "line": 600,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1001,
+ "name": "emailRedirectTo",
+ "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/dist/module/lib/types.d.ts",
+ "line": 598,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1002, 1001]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 596,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 997,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 594,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Extract"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ }
+ ]
+ }
+ ],
+ "name": "Extract",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [998, 999, 997]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 593,
+ "character": 27
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1003,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1006,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 605,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1007,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1008,
+ "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/dist/module/lib/types.d.ts",
+ "line": 607,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1008]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 605,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1005,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 604,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1004,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 603,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Extract"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 993,
+ "name": "MobileOtpType",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ ],
+ "name": "Extract",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1006, 1005, 1004]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 602,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 862,
+ "name": "SignInAnonymouslyCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 394,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 863,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 864,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 395,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 865,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 867,
+ "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/dist/module/lib/types.d.ts",
+ "line": 403,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 866,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 401,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [867, 866]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 395,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [864]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 394,
+ "character": 43
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 478,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 912,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 916,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If the ID token contains an "
+ },
+ {
+ "kind": "code",
+ "text": "`at_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " claim, then the hash of this value is compared to the value in the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 484,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 917,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If the ID token contains a "
+ },
+ {
+ "kind": "code",
+ "text": "`nonce`"
+ },
+ {
+ "kind": "text",
+ "text": " claim, then the hash of this value is compared to the value in the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 486,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 918,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 487,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 919,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 920,
+ "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/dist/module/lib/types.d.ts",
+ "line": 489,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [920]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 487,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 913,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provider name or OIDC "
+ },
+ {
+ "kind": "code",
+ "text": "`iss`"
+ },
+ {
+ "kind": "text",
+ "text": " value identifying which provider should be used to verify the provided token. Supported names: "
+ },
+ {
+ "kind": "code",
+ "text": "`google`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`apple`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`azure`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`facebook`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`kakao`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`keycloak`"
+ },
+ {
+ "kind": "text",
+ "text": " (deprecated)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 480,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 914,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 480,
+ "character": 78
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "id": 915,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OIDC ID token issued by the specified provider. The "
+ },
+ {
+ "kind": "code",
+ "text": "`iss`"
+ },
+ {
+ "kind": "text",
+ "text": " claim in the ID token must match the supplied provider. Some ID tokens contain an "
+ },
+ {
+ "kind": "code",
+ "text": "`at_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " which require that you provide an "
+ },
+ {
+ "kind": "code",
+ "text": "`access_token`"
+ },
+ {
+ "kind": "text",
+ "text": " value to be accepted properly. If the token contains a "
+ },
+ {
+ "kind": "code",
+ "text": "`nonce`"
+ },
+ {
+ "kind": "text",
+ "text": " claim you must supply the nonce used to obtain the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 482,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [916, 917, 918, 913, 915]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 478,
+ "character": 43
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 899,
+ "name": "SignInWithOAuthCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 462,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 900,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 902,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 465,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 903,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 906,
+ "name": "queryParams",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An object of query params"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 471,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 907,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 471,
+ "character": 22
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 908,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 472,
+ "character": 12
+ }
+ ],
+ "parameters": [
+ {
+ "id": 909,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 904,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 467,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 905,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A space-separated list of scopes granted to the OAuth application."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 469,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 910,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 475,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [906, 904, 905, 910]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 465,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 901,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of the providers supported by GoTrue."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 464,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [902, 901]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 462,
+ "character": 41
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 876,
+ "name": "SignInWithPasswordCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 421,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PasswordCredentialsBase"
+ },
+ "name": "PasswordCredentialsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 877,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 878,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 422,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 879,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 880,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 423,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [880]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 422,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [878]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 421,
+ "character": 70
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 881,
+ "name": "SignInWithPasswordlessCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 426,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 882,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 883,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 428,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 884,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 429,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 885,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 889,
+ "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/dist/module/lib/types.d.ts",
+ "line": 441,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 888,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 439,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 886,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The redirect url embedded in the email link"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 431,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 887,
+ "name": "shouldCreateUser",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 433,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [889, 888, 886, 887]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 429,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [883, 884]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 426,
+ "character": 48
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 890,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 892,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 446,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 893,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 896,
+ "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/dist/module/lib/types.d.ts",
+ "line": 456,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 897,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Messaging channel to use (e.g. whatsapp or sms)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 458,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 895,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 454,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 894,
+ "name": "shouldCreateUser",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 448,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [896, 897, 895, 894]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 446,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 891,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 445,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [892, 891]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 443,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1009,
+ "name": "SignInWithSSO",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 610,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1010,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1012,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 613,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1013,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1015,
+ "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/dist/module/lib/types.d.ts",
+ "line": 617,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1014,
+ "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/dist/module/lib/types.d.ts",
+ "line": 615,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1015, 1014]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 613,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1011,
+ "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/dist/module/lib/types.d.ts",
+ "line": 612,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1012, 1011]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 610,
+ "character": 28
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1016,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1017,
+ "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/dist/module/lib/types.d.ts",
+ "line": 621,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1018,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 622,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1019,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1021,
+ "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/dist/module/lib/types.d.ts",
+ "line": 626,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1020,
+ "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/dist/module/lib/types.d.ts",
+ "line": 624,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1021, 1020]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 622,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1017, 1018]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 619,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1262,
+ "name": "SignOut",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1029,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1263,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1264,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Determines which sessions should be\nlogged out. Global means all\nsessions by this account. Local\nmeans only this session. Others\nmeans all other sessions except the\ncurrent one. When using others,\nthere is no sign-out event fired on\nthe current session!"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1040,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1264]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1029,
+ "character": 22
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1298,
+ "name": "SignOutScope",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1128,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 1297,
+ "name": "SIGN_OUT_SCOPES",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ },
+ {
+ "id": 868,
+ "name": "SignUpWithPasswordCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 406,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PasswordCredentialsBase"
+ },
+ "name": "PasswordCredentialsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 869,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 870,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 407,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 871,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 874,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 410,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 875,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 411,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 873,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 409,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 872,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 408,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [874, 875, 873, 872]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 407,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [870]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 406,
+ "character": 79
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 921,
+ "name": "SolanaWallet",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 492,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 922,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 927,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 494,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 928,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 929,
+ "name": "toBase58",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 495,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 930,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 495,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 931,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [929]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 494,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 923,
+ "name": "signIn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 493,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 924,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 493,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 925,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 926,
+ "name": "inputs",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInInput"
+ },
+ "name": "SolanaSignInInput",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInOutput"
+ },
+ "name": "SolanaSignInOutput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInOutput"
+ },
+ "name": "SolanaSignInOutput",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 932,
+ "name": "signMessage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 497,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 933,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 497,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 934,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 935,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 936,
+ "name": "encoding",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "utf8"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [927, 923, 932]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 492,
+ "character": 27
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 937,
+ "name": "SolanaWeb3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 499,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 938,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 939,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 500,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "id": 942,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 505,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 943,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 945,
+ "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/dist/module/lib/types.d.ts",
+ "line": 509,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 946,
+ "name": "signInWithSolana",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 510,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInInput"
+ },
+ "name": "SolanaSignInInput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "version"
+ },
+ {
+ "type": "literal",
+ "value": "chain"
+ },
+ {
+ "type": "literal",
+ "value": "domain"
+ },
+ {
+ "type": "literal",
+ "value": "uri"
+ },
+ {
+ "type": "literal",
+ "value": "statement"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 944,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 507,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [945, 946, 944]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 505,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 941,
+ "name": "statement",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 504,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 940,
+ "name": "wallet",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Wallet interface to use. If not specified will default to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.solana`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 502,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 921,
+ "name": "SolanaWallet",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [939, 942, 941, 940]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 499,
+ "character": 36
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 947,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 948,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 513,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "id": 949,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sign in with Solana compatible message. Must include "
+ },
+ {
+ "kind": "code",
+ "text": "`Issued At`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`URI`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`Version`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 515,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 951,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 518,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 952,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 953,
+ "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/dist/module/lib/types.d.ts",
+ "line": 520,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [953]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 518,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 950,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Ed25519 signature of the message."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 517,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [948, 949, 951, 950]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 512,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 790,
+ "name": "SSOResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 143,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 791,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 792,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to open in a browser which will complete the sign-in flow by\ntaking the user to the identity provider's authentication flow.\n\nOn browsers you can set the URL to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.location.href`"
+ },
+ {
+ "kind": "text",
+ "text": " to take\nthe user to the authentication flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 151,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [792]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 143,
+ "character": 40
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 734,
+ "name": "StrictOmit",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A stricter version of TypeScript's Omit that only allows omitting keys that actually exist.\nThis prevents typos and ensures type safety at compile time.\nUnlike regular Omit, this will error if you try to omit a non-existent key."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 78,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 735,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ },
+ {
+ "id": 736,
+ "name": "K",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 735,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 735,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 736,
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 242,
+ "name": "SupabaseClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 30,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L30"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 267,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 243,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 264,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional function for using a third-party authentication system with\nSupabase. The function should return an access token or ID token (JWT) by\nobtaining it from the third-party auth SDK. Note that this\nfunction may be called concurrently and many times. Use memoization and\nlocking techniques if this is not supported by the SDKs.\n\nWhen set, the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth`"
+ },
+ {
+ "kind": "text",
+ "text": " namespace of the Supabase client cannot be used.\nCreate another client if you wish to use Supabase Auth and third-party\nauthentications concurrently in the same application."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 108,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L108"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 265,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 108,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L108"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 266,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 247,
+ "name": "auth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 38,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L38"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 248,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 249,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Automatically refreshes the token for logged-in users. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 42,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L42"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 256,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 74,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L74"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "debug"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 252,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 54,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L54"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 255,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 70,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L70"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "flowType"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 257,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 80,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L80"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "lock"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 251,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to persist a logged-in session to storage. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 50,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L50"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 253,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A storage provider. Used to store the logged-in session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 58,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L58"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "storage"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 250,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional key name used for storing tokens in local storage."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 46,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L46"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 254,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A storage provider to store the user profile separately from the session.\nUseful when you need to store the session information in cookies,\nwithout bloating the data with the redundant user object."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 66,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "userStorage"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [249, 256, 252, 255, 257, 251, 253, 250, 254]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 38,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L38"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 244,
+ "name": "db",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to "
+ },
+ {
+ "kind": "code",
+ "text": "`public`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 34,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L34"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 245,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 246,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 35,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L35"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 267,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [246]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 34,
+ "character": 7,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L34"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 260,
+ "name": "global",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 87,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L87"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 261,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 262,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 91,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L91"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/supabase-js"
+ }
+ },
+ {
+ "id": 263,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional headers for initializing the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 95,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L95"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [262, 263]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 87,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L87"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 258,
+ "name": "realtime",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options passed to the realtime-js instance"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 85,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L85"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2011,
+ "name": "RealtimeClientOptions",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 259,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 86,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L86"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../storage-js/src/StorageClient.ts",
+ "qualifiedName": "StorageClientOptions"
+ },
+ "name": "StorageClientOptions",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [264, 247, 244, 260, 258, 259]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 30,
+ "character": 48,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L30"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1244,
+ "name": "SupportedStorage",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1003,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PromisifyMethods"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Storage"
+ },
+ "name": "Storage",
+ "package": "typescript"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "getItem"
+ },
+ {
+ "type": "literal",
+ "value": "setItem"
+ },
+ {
+ "type": "literal",
+ "value": "removeItem"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ ],
+ "name": "PromisifyMethods",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1245,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1246,
+ "name": "isServer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " signals to the library that the storage medium is used\non a server and the values may not be authentic, such as reading from\nrequest cookies. Implementations should not set this to true if the client\nis used on a server that reads storage information from authenticated\nsources, such as a secure database or file."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1011,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1246]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1003,
+ "character": 103
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1327,
+ "name": "UpdateOAuthClientParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for updating an existing OAuth client.\nAll fields are optional. Only provided fields will be updated.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1206,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1328,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1329,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1208,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1330,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1210,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1333,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1216,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1331,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1212,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1332,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1214,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1329, 1330, 1333, 1331, 1332]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1206,
+ "character": 38
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 793,
+ "name": "UserResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 153,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 794,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 795,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 154,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [795]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 153,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 973,
+ "name": "VerifyOtpParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 549,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 974,
+ "name": "VerifyMobileOtpParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 982,
+ "name": "VerifyEmailOtpParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 990,
+ "name": "VerifyTokenHashParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 728,
+ "name": "WeakPassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 62,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 729,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 731,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 64,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 730,
+ "name": "reasons",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 727,
+ "name": "WeakPasswordReasons",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [731, 730]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 62,
+ "character": 27
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 727,
+ "name": "WeakPasswordReasons",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 61,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPasswordReasons"
+ },
+ "name": "WeakPasswordReasons",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 972,
+ "name": "Web3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 548,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 937,
+ "name": "SolanaWeb3Credentials",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 955,
+ "name": "EthereumWeb3Credentials",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 667,
+ "name": "AuthAdminApi",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/AuthAdminApi.d.ts",
+ "line": 2,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 668,
+ "name": "AuthClient",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/AuthClient.d.ts",
+ "line": 2,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 361,
+ "name": "GoTrueClient",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 682,
+ "name": "lockInternals",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 4,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 683,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 684,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 8,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [684]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 4,
+ "character": 32
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2137,
+ "name": "REALTIME_CHANNEL_STATES",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 134,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CHANNEL_STATES"
+ },
+ "name": "CHANNEL_STATES",
+ "package": "@supabase/realtime-js",
+ "preferValues": true
+ }
+ }
+ },
+ {
+ "id": 1297,
+ "name": "SIGN_OUT_SCOPES",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1127,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "tuple",
+ "elements": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1,
+ "name": "createClient",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new Supabase Client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 27,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L27"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2,
+ "name": "createClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 27,
+ "character": 28,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L27"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 3,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 4,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 5,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 6,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 31,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L31"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [6]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 31,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L31"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 7,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 4,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 8,
+ "name": "supabaseUrl",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 9,
+ "name": "supabaseKey",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 10,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 242,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 7,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 112,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 7,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClient",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1409,
+ "name": "isAuthApiError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 21,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1410,
+ "name": "isAuthApiError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 21,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1411,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1434,
+ "name": "AuthApiError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1406,
+ "name": "isAuthError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 16,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1407,
+ "name": "isAuthError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 16,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1408,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1415,
+ "name": "isAuthImplicitGrantRedirectError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 60,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1416,
+ "name": "isAuthImplicitGrantRedirectError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 60,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1417,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1418,
+ "name": "isAuthRetryableFetchError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 83,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1419,
+ "name": "isAuthRetryableFetchError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 83,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1420,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1545,
+ "name": "AuthRetryableFetchError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1412,
+ "name": "isAuthSessionMissingError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 34,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1413,
+ "name": "isAuthSessionMissingError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 34,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1414,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1466,
+ "name": "AuthSessionMissingError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1421,
+ "name": "isAuthWeakPasswordError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 96,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1422,
+ "name": "isAuthWeakPasswordError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 96,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1423,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1555,
+ "name": "AuthWeakPasswordError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 669,
+ "name": "navigatorLock",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 670,
+ "name": "navigatorLock",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Implements a global exclusive lock using the Navigator LockManager API. It\nis available on all browsers released after 2022-03-15 with Safari being the\nlast one to release support. If the API is not available, this function will\nthrow. Make sure you check availablility before configuring "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClient",
+ "target": 361
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nYou can turn on debugging by setting the "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase.gotrue-js.locks.debug`"
+ },
+ {
+ "kind": "text",
+ "text": "\nlocal storage item to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nInternals:\n\nSince the LockManager API does not preserve stack traces for the async\nfunction passed in the "
+ },
+ {
+ "kind": "code",
+ "text": "`request`"
+ },
+ {
+ "kind": "text",
+ "text": " method, a trick is used where acquiring the\nlock releases a previously started promise to run the operation in the "
+ },
+ {
+ "kind": "code",
+ "text": "`fn`"
+ },
+ {
+ "kind": "text",
+ "text": "\nfunction. The lock waits for that promise to finish (with or without error),\nwhile the function will finally wait for the result anyway."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 24
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 671,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 672,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 673,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": " set to true."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 674,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to run once the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 675,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 83
+ }
+ ],
+ "signatures": [
+ {
+ "id": 676,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 83
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 671,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 671,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 685,
+ "name": "processLock",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 686,
+ "name": "processLock",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#navigatorLock"
+ },
+ {
+ "kind": "text",
+ "text": " in browser environments."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 24
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 687,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 688,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 689,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": " set to true."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 690,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to run once the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 691,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 81
+ }
+ ],
+ "signatures": [
+ {
+ "id": 692,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 81
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 687,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 687,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 796,
+ "name": "Session",
+ "variant": "reference",
+ "kind": 4194304,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 156,
+ "character": 17
+ }
+ ],
+ "target": 37
+ },
+ {
+ "id": 832,
+ "name": "User",
+ "variant": "reference",
+ "kind": 4194304,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "target": 11
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumerations",
+ "children": [96, 2118, 2123, 2128, 2132]
+ },
+ {
+ "title": "Classes",
+ "children": [
+ 1434, 1424, 1491, 1482, 1567, 1474, 1518, 1545, 1466, 1444, 1555, 1454, 79, 69, 64, 74,
+ 275, 361, 677, 52, 1593, 1902, 1576, 112, 2138
+ ]
+ },
+ {
+ "title": "Interfaces",
+ "children": [
+ 839, 799, 1390, 37, 11, 1044, 1237, 1347, 1107, 1290, 852, 825, 833, 802, 829, 982, 974,
+ 990, 2154, 2204
+ ]
+ },
+ {
+ "title": "Type Aliases",
+ "children": [
+ 797, 695, 694, 1101, 898, 1227, 1224, 1234, 1231, 1092, 1096, 1091, 1093, 1094, 1095,
+ 1269, 1087, 1268, 1270, 1102, 1097, 1088, 1086, 1079, 1386, 1387, 763, 754, 758, 768,
+ 772, 1250, 1319, 994, 954, 955, 815, 814, 86, 1038, 1028, 1047, 1052, 1048, 1059, 1033,
+ 1022, 705, 1247, 1271, 1286, 696, 1078, 1077, 1075, 1074, 1076, 1060, 1266, 1265, 1267,
+ 1073, 1061, 1072, 1065, 1064, 1066, 1070, 993, 1370, 1376, 1303, 1299, 1335, 1302, 1334,
+ 1300, 1301, 777, 1258, 1251, 50, 46, 48, 732, 693, 270, 274, 268, 1887, 1901, 2011,
+ 2040, 2047, 2054, 2078, 2059, 2069, 2088, 2098, 2108, 2117, 737, 746, 1276, 995, 862,
+ 911, 899, 876, 881, 1009, 1262, 1298, 868, 921, 937, 790, 734, 242, 1244, 1327, 793,
+ 973, 728, 727, 972
+ ]
+ },
+ {
+ "title": "Variables",
+ "children": [667, 668, 682, 2137, 1297]
+ },
+ {
+ "title": "Functions",
+ "children": [1, 1409, 1406, 1415, 1418, 1412, 1421, 669, 685]
+ },
+ {
+ "title": "References",
+ "children": [796, 832]
+ }
+ ],
+ "packageName": "@supabase/supabase-js",
+ "readme": [
+ {
+ "kind": "text",
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase JS SDK \n\n Isomorphic JavaScript SDK for Supabase - combining Auth, Database, Storage, Functions, and Realtime. \n\n \n Guides \n ·\n Reference Docs \n ·\n TypeDoc \n
\n
\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/supabase-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/supabase-js)\n\n
\n\n## Usage\n\nFirst of all, you need to install the library:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```sh\nnpm install @supabase/supabase-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThen you're able to import the library and establish the connection with the database:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Create a single supabase client for interacting with your database\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### UMD\n\nYou can use plain "
+ },
+ {
+ "kind": "code",
+ "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nor even:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThen you can use it from a global "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase`"
+ },
+ {
+ "kind": "text",
+ "text": " variable:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### ESM\n\nYou can use "
+ },
+ {
+ "kind": "code",
+ "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Custom "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " uses the ["
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation can be provided as an option. This is most useful in environments where "
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " is not compatible, for instance Cloudflare Workers:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
+ },
+ {
+ "kind": "code",
+ "text": "`stable`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`lts`"
+ },
+ {
+ "kind": "text",
+ "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Testing\n\nThere's a complete guide on how to set up your environment for running locally the "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " integration tests. Please refer to [TESTING.md]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "./TESTING.md",
+ "target": 2
+ },
+ {
+ "kind": "text",
+ "text": ").\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "../../../CONTRIBUTING.md",
+ "target": 3
+ },
+ {
+ "kind": "text",
+ "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
+ }
+ ],
+ "symbolIdMap": {
+ "0": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": ""
+ },
+ "1": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "2": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "3": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "Database"
+ },
+ "4": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaNameOrClientOptions"
+ },
+ "5": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type"
+ },
+ "6": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "7": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "8": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "9": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "10": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "options"
+ },
+ "11": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "12": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.id"
+ },
+ "13": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.app_metadata"
+ },
+ "14": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.user_metadata"
+ },
+ "15": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.aud"
+ },
+ "16": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmation_sent_at"
+ },
+ "17": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.recovery_sent_at"
+ },
+ "18": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_change_sent_at"
+ },
+ "19": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_email"
+ },
+ "20": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_phone"
+ },
+ "21": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.invited_at"
+ },
+ "22": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.action_link"
+ },
+ "23": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email"
+ },
+ "24": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone"
+ },
+ "25": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.created_at"
+ },
+ "26": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmed_at"
+ },
+ "27": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_confirmed_at"
+ },
+ "28": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone_confirmed_at"
+ },
+ "29": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.last_sign_in_at"
+ },
+ "30": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.role"
+ },
+ "31": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.updated_at"
+ },
+ "32": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.identities"
+ },
+ "33": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_anonymous"
+ },
+ "34": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_sso_user"
+ },
+ "35": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.factors"
+ },
+ "36": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.deleted_at"
+ },
+ "37": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "38": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_token"
+ },
+ "39": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_refresh_token"
+ },
+ "40": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.access_token"
+ },
+ "41": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.refresh_token"
+ },
+ "42": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_in"
+ },
+ "43": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_at"
+ },
+ "44": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.token_type"
+ },
+ "45": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.user"
+ },
+ "46": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponse"
+ },
+ "47": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "48": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestSingleResponse"
+ },
+ "49": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "50": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestMaybeSingleResponse"
+ },
+ "51": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "52": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "53": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "54": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "55": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "context"
+ },
+ "56": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type"
+ },
+ "57": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.message"
+ },
+ "58": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.details"
+ },
+ "59": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.hint"
+ },
+ "60": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.code"
+ },
+ "61": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.details"
+ },
+ "62": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.hint"
+ },
+ "63": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.code"
+ },
+ "64": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "65": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError.__constructor"
+ },
+ "66": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "67": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "68": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "69": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "70": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError.__constructor"
+ },
+ "71": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "72": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "73": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "74": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "75": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError.__constructor"
+ },
+ "76": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "77": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "78": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "79": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "80": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.__constructor"
+ },
+ "81": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "82": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "message"
+ },
+ "83": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "name"
+ },
+ "84": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "85": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "86": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionInvokeOptions"
+ },
+ "87": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "88": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "89": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "90": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "92": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.method"
+ },
+ "93": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.region"
+ },
+ "94": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.body"
+ },
+ "95": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.signal"
+ },
+ "96": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion"
+ },
+ "97": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.Any"
+ },
+ "98": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast1"
+ },
+ "99": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast2"
+ },
+ "100": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSouth1"
+ },
+ "101": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast1"
+ },
+ "102": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast2"
+ },
+ "103": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.CaCentral1"
+ },
+ "104": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuCentral1"
+ },
+ "105": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest1"
+ },
+ "106": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest2"
+ },
+ "107": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest3"
+ },
+ "108": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.SaEast1"
+ },
+ "109": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsEast1"
+ },
+ "110": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest1"
+ },
+ "111": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest2"
+ },
+ "112": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "113": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "114": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "115": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "116": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "117": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "118": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "119": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "120": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "121": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "122": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "123": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "124": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "125": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "126": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "127": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "128": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "129": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "130": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "131": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "132": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "133": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "134": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "135": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.auth"
+ },
+ "136": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtime"
+ },
+ "137": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "138": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtimeUrl"
+ },
+ "139": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.authUrl"
+ },
+ "140": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageUrl"
+ },
+ "141": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functionsUrl"
+ },
+ "142": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rest"
+ },
+ "143": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "144": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "146": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "147": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "148": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "149": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "150": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "151": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "152": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.changedAccessToken"
+ },
+ "153": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.accessToken"
+ },
+ "154": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "155": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "156": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "157": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseUrl"
+ },
+ "158": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseKey"
+ },
+ "159": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "160": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "161": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "162": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "163": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "TableName"
+ },
+ "164": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Table"
+ },
+ "165": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "166": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "167": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "ViewName"
+ },
+ "168": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "View"
+ },
+ "169": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "170": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "171": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "172": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "DynamicSchema"
+ },
+ "173": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "schema"
+ },
+ "174": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "175": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "176": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FnName"
+ },
+ "177": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Args"
+ },
+ "178": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FilterBuilder"
+ },
+ "179": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "fn"
+ },
+ "180": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "args"
+ },
+ "181": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "182": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "183": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.head"
+ },
+ "184": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.get"
+ },
+ "185": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.count"
+ },
+ "186": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "187": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "188": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "name"
+ },
+ "189": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "opts"
+ },
+ "190": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "191": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "192": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "193": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "194": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "channel"
+ },
+ "195": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "196": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "225": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "226": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "227": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "228": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "229": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "230": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "231": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "232": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "233": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "234": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "235": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "236": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "237": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "238": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "239": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "240": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "241": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "242": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseClientOptions"
+ },
+ "243": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "244": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.db"
+ },
+ "245": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "246": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.schema"
+ },
+ "247": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.auth"
+ },
+ "248": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "249": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "250": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "251": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "252": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "253": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "254": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "255": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "256": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "257": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "258": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.realtime"
+ },
+ "259": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "260": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.global"
+ },
+ "261": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "262": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "263": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "264": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.accessToken"
+ },
+ "265": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "266": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "267": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "268": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryResult"
+ },
+ "269": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "270": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryData"
+ },
+ "271": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "272": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "273": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "274": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryError"
+ },
+ "275": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "276": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "277": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "278": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__0"
+ },
+ "279": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "280": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.url"
+ },
+ "281": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "282": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "283": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "285": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "286": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "287": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "288": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "289": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "290": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "291": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "292": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "293": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "294": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "295": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.url"
+ },
+ "296": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.headers"
+ },
+ "297": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "298": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "300": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "301": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "302": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "303": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "304": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "305": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "306": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "307": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "308": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "309": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "310": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "jwt"
+ },
+ "311": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "scope"
+ },
+ "312": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "313": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "314": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "315": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "316": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "317": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "email"
+ },
+ "318": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "options"
+ },
+ "319": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "320": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "321": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "322": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "323": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "324": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "325": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "326": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "327": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "328": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "329": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "330": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "331": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "332": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "333": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "334": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "335": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "336": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "337": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "338": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "339": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "340": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "341": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "342": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "343": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "344": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "345": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "346": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "347": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "348": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "349": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "350": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "351": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "id"
+ },
+ "352": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "shouldSoftDelete"
+ },
+ "361": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "363": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "364": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "365": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "367": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.admin"
+ },
+ "368": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "369": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "370": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "371": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.flowType"
+ },
+ "372": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "373": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "374": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "375": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "376": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "377": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "378": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "379": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "380": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "381": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "382": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "383": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "384": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshToken"
+ },
+ "385": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.persistSession"
+ },
+ "386": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "387": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.userStorage"
+ },
+ "388": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.memoryStorage"
+ },
+ "389": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "390": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "392": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stateChangeEmitters"
+ },
+ "393": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshTicker"
+ },
+ "394": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.visibilityChangedCallback"
+ },
+ "395": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "396": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "397": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshingDeferred"
+ },
+ "398": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initializePromise"
+ },
+ "399": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.detectSessionInUrl"
+ },
+ "400": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.url"
+ },
+ "401": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "402": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "403": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "405": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.hasCustomAuthorizationHeader"
+ },
+ "406": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.suppressGetSessionWarning"
+ },
+ "407": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "408": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "409": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "410": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "411": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "412": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "413": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "414": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "415": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lock"
+ },
+ "416": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lockAcquired"
+ },
+ "417": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.pendingInLock"
+ },
+ "418": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.broadcastChannel"
+ },
+ "419": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logDebugMessages"
+ },
+ "420": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logger"
+ },
+ "421": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "422": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "423": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "message"
+ },
+ "424": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "args"
+ },
+ "426": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "427": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "429": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "430": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "431": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "432": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "433": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "434": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "435": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "436": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "437": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "438": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "439": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "440": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "441": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "442": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "443": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "authCode"
+ },
+ "444": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "445": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "446": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "447": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "448": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "449": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "450": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "451": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "452": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "453": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "454": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "455": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "456": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "457": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "458": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "462": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "463": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "464": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "465": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "466": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "467": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "468": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "469": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "470": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "471": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "472": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "473": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "474": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "475": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "477": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "478": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "479": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "480": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "481": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "482": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "483": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "484": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "485": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "486": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "487": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "488": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "489": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "490": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "491": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "492": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "493": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "494": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "495": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "496": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "500": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "501": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "502": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "504": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "505": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "506": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "507": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "508": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "509": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "510": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "511": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "512": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "513": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "514": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "515": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "516": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "517": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "518": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "519": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "520": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "521": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "522": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "523": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "524": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "525": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "526": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "527": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "528": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "529": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "530": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "531": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "532": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "533": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "534": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "535": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "536": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "537": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "541": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "542": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "543": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "544": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "545": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "546": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "547": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "548": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__0"
+ },
+ "549": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "550": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "551": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "552": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "553": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "554": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "555": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "556": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "557": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "558": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "559": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "560": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "561": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "562": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "563": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "564": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "565": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "566": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "567": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "568": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "569": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "570": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "571": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "573": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "574": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "575": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "email"
+ },
+ "576": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "577": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "578": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "579": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "580": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "581": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "582": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "583": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "584": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "585": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "586": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "587": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "588": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "589": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "590": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "591": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "592": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.identities"
+ },
+ "593": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "594": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "595": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "596": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "597": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "598": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "599": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "600": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "601": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "604": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "605": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "606": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "identity"
+ },
+ "607": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "608": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "609": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "610": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "611": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "612": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "613": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "625": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "626": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "627": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "628": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "644": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "645": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "646": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "647": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "648": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "649": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "650": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.allowExpired"
+ },
+ "651": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.jwks"
+ },
+ "652": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "653": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "654": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "655": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "656": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "657": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.claims"
+ },
+ "658": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.header"
+ },
+ "659": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "660": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "661": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "662": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "663": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "664": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "665": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "666": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "667": {
+ "sourceFileName": "../auth-js/src/AuthAdminApi.ts",
+ "qualifiedName": "AuthAdminApi"
+ },
+ "668": {
+ "sourceFileName": "../auth-js/src/AuthClient.ts",
+ "qualifiedName": "AuthClient"
+ },
+ "669": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "670": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "671": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "672": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "673": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "674": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "675": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "676": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "677": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "678": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.__constructor"
+ },
+ "679": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "680": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "message"
+ },
+ "681": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
+ },
+ "682": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "internals"
+ },
+ "683": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "684": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "685": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "686": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "687": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "688": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "689": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "690": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "691": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "692": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "693": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Provider"
+ },
+ "694": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEventMFA"
+ },
+ "695": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEvent"
+ },
+ "696": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "LockFunc"
+ },
+ "697": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "698": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "699": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "name"
+ },
+ "700": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "701": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "fn"
+ },
+ "702": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "703": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "704": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "R"
+ },
+ "705": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueClientOptions"
+ },
+ "706": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "707": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "708": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "709": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "710": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "712": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "713": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "714": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "715": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "716": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "717": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "718": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "719": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "720": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "721": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "722": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "723": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "724": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "args"
+ },
+ "725": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "726": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hasCustomAuthorizationHeader"
+ },
+ "727": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPasswordReasons"
+ },
+ "728": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPassword"
+ },
+ "729": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "730": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.reasons"
+ },
+ "731": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "732": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Prettify"
+ },
+ "733": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "734": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "StrictOmit"
+ },
+ "735": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "736": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "737": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResult"
+ },
+ "738": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "739": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "740": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "741": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "742": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "743": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "744": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "745": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ErrorType"
+ },
+ "746": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResultSafeDestructure"
+ },
+ "747": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "748": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "749": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "750": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "751": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "752": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "753": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "754": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponse"
+ },
+ "755": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "756": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "757": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "758": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponsePassword"
+ },
+ "759": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "760": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "761": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "762": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weak_password"
+ },
+ "763": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOtpResponse"
+ },
+ "764": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "765": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "766": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "767": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.messageId"
+ },
+ "768": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponse"
+ },
+ "769": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "770": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "771": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "772": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponsePassword"
+ },
+ "773": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "774": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "775": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "776": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weakPassword"
+ },
+ "777": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthResponse"
+ },
+ "778": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "779": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "780": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "781": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "782": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "783": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "784": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "785": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "786": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "787": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "788": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "789": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "790": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SSOResponse"
+ },
+ "791": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "792": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "793": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserResponse"
+ },
+ "794": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "795": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "796": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "797": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMRMethod"
+ },
+ "798": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "799": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry"
+ },
+ "800": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.method"
+ },
+ "801": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.timestamp"
+ },
+ "802": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity"
+ },
+ "803": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.id"
+ },
+ "804": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.user_id"
+ },
+ "805": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_data"
+ },
+ "806": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "807": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "809": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_id"
+ },
+ "810": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.provider"
+ },
+ "811": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.created_at"
+ },
+ "812": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.last_sign_in_at"
+ },
+ "813": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.updated_at"
+ },
+ "814": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorType"
+ },
+ "815": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Factor"
+ },
+ "816": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "817": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "818": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.friendly_name"
+ },
+ "819": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factor_type"
+ },
+ "820": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.status"
+ },
+ "821": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "822": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "823": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Type"
+ },
+ "824": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Status"
+ },
+ "825": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata"
+ },
+ "826": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.provider"
+ },
+ "827": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.__index"
+ },
+ "829": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata"
+ },
+ "830": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata.__index"
+ },
+ "832": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "833": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes"
+ },
+ "834": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.email"
+ },
+ "835": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.phone"
+ },
+ "836": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.password"
+ },
+ "837": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.nonce"
+ },
+ "838": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.data"
+ },
+ "839": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes"
+ },
+ "840": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.user_metadata"
+ },
+ "841": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.app_metadata"
+ },
+ "842": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.email_confirm"
+ },
+ "843": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
+ },
+ "844": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.ban_duration"
+ },
+ "845": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.role"
+ },
+ "846": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.password_hash"
+ },
+ "847": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.id"
+ },
+ "848": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "nonce"
+ },
+ "849": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "email"
+ },
+ "850": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "password"
+ },
+ "851": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "852": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription"
+ },
+ "853": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.id"
+ },
+ "854": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.callback"
+ },
+ "855": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "856": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "857": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "event"
+ },
+ "858": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "session"
+ },
+ "859": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.unsubscribe"
+ },
+ "860": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "861": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "862": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInAnonymouslyCredentials"
+ },
+ "863": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "864": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "865": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "866": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "867": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "868": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignUpWithPasswordCredentials"
+ },
+ "869": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "870": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "871": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "872": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "873": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "874": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "875": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "876": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordCredentials"
+ },
+ "877": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "878": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "879": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "880": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "881": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordlessCredentials"
+ },
+ "882": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "883": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "884": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "885": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "886": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "887": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "888": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "889": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "890": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "891": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "892": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "893": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "894": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "895": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "896": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "897": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "898": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthFlowType"
+ },
+ "899": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithOAuthCredentials"
+ },
+ "900": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "901": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "902": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "903": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "904": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "905": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scopes"
+ },
+ "906": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.queryParams"
+ },
+ "907": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "908": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "910": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "911": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithIdTokenCredentials"
+ },
+ "912": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "913": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "914": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "915": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token"
+ },
+ "916": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "917": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nonce"
+ },
+ "918": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "919": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "920": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "921": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWallet"
+ },
+ "922": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "923": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signIn"
+ },
+ "924": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "925": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "926": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "inputs"
+ },
+ "927": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "928": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "929": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.toBase58"
+ },
+ "930": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "931": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "932": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signMessage"
+ },
+ "933": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "934": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "935": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "936": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "encoding"
+ },
+ "937": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWeb3Credentials"
+ },
+ "938": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "939": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "940": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "941": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "942": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "943": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "944": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "945": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "946": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithSolana"
+ },
+ "947": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "948": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "949": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "950": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "951": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "952": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "953": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "954": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWallet"
+ },
+ "955": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWeb3Credentials"
+ },
+ "956": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "957": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "958": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "959": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "960": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "961": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "962": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "963": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "964": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithEthereum"
+ },
+ "965": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "966": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "967": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "968": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "969": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "970": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "971": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "972": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Web3Credentials"
+ },
+ "973": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyOtpParams"
+ },
+ "974": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams"
+ },
+ "975": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.phone"
+ },
+ "976": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.token"
+ },
+ "977": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.type"
+ },
+ "978": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.options"
+ },
+ "979": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "980": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "981": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "982": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams"
+ },
+ "983": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.email"
+ },
+ "984": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.token"
+ },
+ "985": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.type"
+ },
+ "986": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.options"
+ },
+ "987": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "988": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "989": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "990": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams"
+ },
+ "991": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
+ },
+ "992": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.type"
+ },
+ "993": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MobileOtpType"
+ },
+ "994": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EmailOtpType"
+ },
+ "995": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ResendParams"
+ },
+ "996": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "997": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "998": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "999": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1000": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1001": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "1002": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1003": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1004": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1005": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "1006": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1007": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1008": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1009": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithSSO"
+ },
+ "1010": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1011": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.providerId"
+ },
+ "1012": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1013": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1014": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1015": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1016": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1017": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.domain"
+ },
+ "1018": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1019": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1020": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1021": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1022": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateSignupLinkParams"
+ },
+ "1023": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1024": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1025": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1026": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.password"
+ },
+ "1027": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1028": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ },
+ "1029": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1030": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1031": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1032": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1033": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateRecoveryLinkParams"
+ },
+ "1034": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1035": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1036": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1037": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1038": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateEmailChangeLinkParams"
+ },
+ "1039": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1040": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1041": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1042": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.newEmail"
+ },
+ "1043": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1044": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions"
+ },
+ "1045": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.data"
+ },
+ "1046": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
+ },
+ "1047": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkParams"
+ },
+ "1048": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkResponse"
+ },
+ "1049": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1050": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.properties"
+ },
+ "1051": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1052": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkProperties"
+ },
+ "1053": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1054": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.action_link"
+ },
+ "1055": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email_otp"
+ },
+ "1056": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hashed_token"
+ },
+ "1057": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_to"
+ },
+ "1058": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.verification_type"
+ },
+ "1059": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkType"
+ },
+ "1060": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParams"
+ },
+ "1061": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAUnenrollParams"
+ },
+ "1062": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1063": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factorId"
+ },
+ "1064": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyTOTPParams"
+ },
+ "1065": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyPhoneParams"
+ },
+ "1066": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
+ },
+ "1067": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1068": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.webauthn"
+ },
+ "1069": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1070": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParams"
+ },
+ "1071": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1072": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParams"
+ },
+ "1073": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFATOTPChannel"
+ },
+ "1074": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeTOTPParams"
+ },
+ "1075": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengePhoneParams"
+ },
+ "1076": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeWebauthnParams"
+ },
+ "1077": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParams"
+ },
+ "1078": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeAndVerifyParams"
+ },
+ "1079": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponseData"
+ },
+ "1080": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1081": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "1082": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_type"
+ },
+ "1083": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.expires_in"
+ },
+ "1084": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "1085": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1086": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponse"
+ },
+ "1087": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponse"
+ },
+ "1088": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAUnenrollResponse"
+ },
+ "1089": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1090": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1091": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ },
+ "1092": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
+ },
+ "1093": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ },
+ "1094": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ },
+ "1095": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ },
+ "1096": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponse"
+ },
+ "1097": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAListFactorsResponse"
+ },
+ "1098": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1099": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.all"
+ },
+ "1100": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1101": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthenticatorAssuranceLevels"
+ },
+ "1102": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ },
+ "1103": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1104": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentLevel"
+ },
+ "1105": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextLevel"
+ },
+ "1106": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentAuthenticationMethods"
+ },
+ "1107": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi"
+ },
+ "1108": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1109": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1110": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1111": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1112": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1113": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1114": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "issuer"
+ },
+ "1115": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1116": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1117": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1118": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1119": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1120": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "1121": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1122": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1123": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1124": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1125": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1126": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1127": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1128": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1129": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1130": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1131": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1132": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1133": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1134": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1135": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1136": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1137": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1138": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1139": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1140": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1141": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1142": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1143": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1144": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1145": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1146": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1147": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "channel"
+ },
+ "1148": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1149": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1150": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1151": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1152": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1153": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1154": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1155": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1156": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1157": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1158": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1159": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1160": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1161": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1162": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1163": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1164": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpId"
+ },
+ "1165": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpOrigins"
+ },
+ "1166": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1167": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1168": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1169": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1170": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1171": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1172": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1173": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1174": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1175": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1176": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1177": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1178": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1179": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1180": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1181": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1182": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1183": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1184": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1185": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1186": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1187": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1188": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1189": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1190": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1191": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1192": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1193": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1194": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1195": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1196": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1197": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1198": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1199": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1200": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1201": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1202": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1203": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1204": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1205": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1206": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1207": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1208": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1209": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1210": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1211": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1212": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1213": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1214": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1215": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1216": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1217": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1218": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1219": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1220": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1221": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1222": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1223": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.webauthn"
+ },
+ "1224": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ },
+ "1225": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1226": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1227": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ },
+ "1228": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1229": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1230": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1231": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ },
+ "1232": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1233": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factors"
+ },
+ "1234": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
+ },
+ "1235": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1236": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1237": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi"
+ },
+ "1238": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1239": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1240": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1241": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1242": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1243": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1244": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SupportedStorage"
+ },
+ "1245": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1246": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.isServer"
+ },
+ "1247": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "InitializeResult"
+ },
+ "1248": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1249": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1250": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
+ },
+ "1251": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Pagination"
+ },
+ "1252": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1253": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextPage"
+ },
+ "1254": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lastPage"
+ },
+ "1255": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1256": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1258": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PageParams"
+ },
+ "1259": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1260": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.page"
+ },
+ "1261": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.perPage"
+ },
+ "1262": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOut"
+ },
+ "1263": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1264": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1265": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollTOTPParams"
+ },
+ "1266": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollPhoneParams"
+ },
+ "1267": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollWebauthnParams"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ },
+ "1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ },
+ "1270": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ },
+ "1271": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtHeader"
+ },
+ "1272": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1273": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.alg"
+ },
+ "1274": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.kid"
+ },
+ "1275": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.typ"
+ },
+ "1276": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequiredClaims"
+ },
+ "1277": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1278": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iss"
+ },
+ "1279": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.sub"
+ },
+ "1280": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1281": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.exp"
+ },
+ "1282": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iat"
+ },
+ "1283": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.role"
+ },
+ "1284": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aal"
+ },
+ "1285": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session_id"
+ },
+ "1286": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtPayload"
+ },
+ "1287": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1288": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1290": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK"
+ },
+ "1291": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kty"
+ },
+ "1292": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.key_ops"
+ },
+ "1293": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.alg"
+ },
+ "1294": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kid"
+ },
+ "1295": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.__index"
+ },
+ "1297": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SIGN_OUT_SCOPES"
+ },
+ "1298": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOutScope"
+ },
+ "1299": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientGrantType"
+ },
+ "1300": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponseType"
+ },
+ "1301": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientType"
+ },
+ "1302": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientRegistrationType"
+ },
+ "1303": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClient"
+ },
+ "1304": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1305": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1306": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1307": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_secret"
+ },
+ "1308": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_type"
+ },
+ "1309": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_endpoint_auth_method"
+ },
+ "1310": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.registration_type"
+ },
+ "1311": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1312": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1313": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1314": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1315": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1316": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1317": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "1318": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "1319": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CreateOAuthClientParams"
+ },
+ "1320": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1321": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1322": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1323": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1324": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1325": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1326": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1327": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UpdateOAuthClientParams"
+ },
+ "1328": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1329": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1330": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1331": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1332": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1333": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1334": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponse"
+ },
+ "1335": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientListResponse"
+ },
+ "1336": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1337": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1338": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1339": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1340": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1341": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1342": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1343": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1344": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1345": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1346": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1347": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi"
+ },
+ "1348": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1349": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1350": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1351": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1352": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1353": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1354": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1355": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1356": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1357": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1358": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1359": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1360": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1361": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1362": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1363": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1364": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1365": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1366": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1367": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1368": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1369": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1370": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationClient"
+ },
+ "1371": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1372": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1373": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1374": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1375": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1376": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationDetails"
+ },
+ "1377": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1378": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.authorization_id"
+ },
+ "1379": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uri"
+ },
+ "1380": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client"
+ },
+ "1381": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1382": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1383": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1384": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1385": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1386": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ },
+ "1387": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthConsentResponse"
+ },
+ "1388": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1389": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_url"
+ },
+ "1390": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi"
+ },
+ "1391": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1392": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1393": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1394": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1395": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1396": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1397": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1398": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1399": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1400": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1401": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1402": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1403": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1404": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1405": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1406": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1407": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1408": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1409": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1410": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1411": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1412": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1413": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1414": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1415": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1416": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1417": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1418": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1419": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1420": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1421": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1422": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1423": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1424": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1425": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__constructor"
+ },
+ "1426": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1427": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1428": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1429": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1430": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1431": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1432": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1433": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.__constructor"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.status"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1442": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.__constructor"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "originalError"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.originalError"
+ },
+ "1450": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1451": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1452": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1453": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1454": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1455": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.__constructor"
+ },
+ "1456": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1457": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1458": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "name"
+ },
+ "1459": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1460": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1461": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1462": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1463": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1464": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1465": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1466": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1467": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError.__constructor"
+ },
+ "1468": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1469": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1470": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1471": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1472": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1473": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1474": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1475": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError.__constructor"
+ },
+ "1476": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1477": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1478": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1479": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1480": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1481": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1482": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1483": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError.__constructor"
+ },
+ "1484": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1485": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1486": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1487": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1488": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1489": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1490": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1491": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1492": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
+ },
+ "1493": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1494": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1495": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1496": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1497": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1498": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1499": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.details"
+ },
+ "1500": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1501": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1502": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1503": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1504": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1505": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1506": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1507": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1508": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1509": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1510": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1511": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1512": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1513": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1514": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1515": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1516": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1517": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1518": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1519": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
+ },
+ "1520": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1521": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1522": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1523": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1524": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1525": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1526": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
+ },
+ "1527": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1528": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1529": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1530": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1531": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1532": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1533": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1534": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1535": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1536": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1537": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1538": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1539": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1540": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1541": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1542": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1543": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1544": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1545": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1546": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError.__constructor"
+ },
+ "1547": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1548": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1549": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1550": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1551": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1552": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1553": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1554": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1555": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1556": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.__constructor"
+ },
+ "1557": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1558": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1559": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1560": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "reasons"
+ },
+ "1561": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.reasons"
+ },
+ "1562": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1563": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1564": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1565": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1566": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1567": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1568": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError.__constructor"
+ },
+ "1569": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1570": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1571": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1572": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1573": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1574": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1575": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1576": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1577": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1578": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1579": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "channel"
+ },
+ "1580": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "opts"
+ },
+ "1581": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.channel"
+ },
+ "1582": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.state"
+ },
+ "1583": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.pendingDiffs"
+ },
+ "1584": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.joinRef"
+ },
+ "1585": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.enabled"
+ },
+ "1586": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.caller"
+ },
+ "1587": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1588": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onJoin"
+ },
+ "1589": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onLeave"
+ },
+ "1590": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onSync"
+ },
+ "1591": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1592": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1593": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1594": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1595": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1596": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "topic"
+ },
+ "1597": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "params"
+ },
+ "1598": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "socket"
+ },
+ "1599": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.topic"
+ },
+ "1600": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.params"
+ },
+ "1601": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.socket"
+ },
+ "1602": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.bindings"
+ },
+ "1603": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1604": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1606": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1607": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1608": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
+ },
+ "1609": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1610": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1612": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.callback"
+ },
+ "1613": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1614": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.timeout"
+ },
+ "1615": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.state"
+ },
+ "1616": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinedOnce"
+ },
+ "1617": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinPush"
+ },
+ "1618": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.rejoinTimer"
+ },
+ "1619": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.pushBuffer"
+ },
+ "1620": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presence"
+ },
+ "1621": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.broadcastEndpointURL"
+ },
+ "1622": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subTopic"
+ },
+ "1623": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.private"
+ },
+ "1624": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1625": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1626": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1627": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1628": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1629": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "status"
+ },
+ "1630": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "err"
+ },
+ "1631": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1632": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1633": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1634": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1635": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1636": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1638": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1639": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1640": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1641": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1642": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1643": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1645": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1646": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1647": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1649": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1650": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1651": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1652": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1653": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1655": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1656": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1657": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1658": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1659": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1660": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1661": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1662": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1663": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1664": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1665": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1666": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1667": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1669": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1670": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1671": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1672": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1673": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1674": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1675": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1676": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1677": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1678": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1679": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1680": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1682": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1683": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1684": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1685": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1686": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1687": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1688": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1689": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1690": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1691": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1692": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1693": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1695": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1696": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1697": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1698": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1699": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1700": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1701": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1702": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1703": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1704": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1706": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1707": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1708": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1709": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1710": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1711": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1712": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1713": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1714": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1715": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1717": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1718": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1719": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1720": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1721": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1722": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1723": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1724": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1725": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1726": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1728": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1729": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1730": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1731": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1732": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1733": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1734": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1735": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1736": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1737": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1738": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1739": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1740": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1741": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1742": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1743": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1744": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1745": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1746": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1747": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1748": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1749": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1750": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1752": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1753": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1754": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1755": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1757": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1758": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1759": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1760": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1761": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1762": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1763": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1764": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1765": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1766": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1767": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1768": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1769": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1770": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1771": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1772": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1773": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1774": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1775": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1776": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1777": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1778": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1779": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1780": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1781": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1782": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1783": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1784": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1785": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1786": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1787": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1788": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1789": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1790": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1792": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1793": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1794": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1795": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1796": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1797": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1798": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1799": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1800": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1801": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1802": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1803": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1804": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1805": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1806": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1807": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1809": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1810": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1811": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1812": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1813": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1814": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1815": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1816": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1817": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1818": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1819": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1820": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1821": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1822": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1823": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1824": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1826": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1827": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1828": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1829": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1830": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1831": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1832": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1833": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1834": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1835": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1836": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1837": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1838": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1839": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1840": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1841": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1843": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1844": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1845": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1846": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1847": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1848": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1849": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1850": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1851": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1852": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1853": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1854": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1855": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1856": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1857": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1858": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1859": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1860": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1861": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1862": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1863": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1864": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1865": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "args"
+ },
+ "1866": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1867": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1868": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1869": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1870": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1872": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1873": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1874": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1876": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1877": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1878": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1879": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1880": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1882": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1883": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1884": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1886": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelOptions"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1889": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.config"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.broadcast"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.self"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.ack"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites: Start Supabase first (see above)\n\n# Run Node.js integration tests\n# IMPORTANT: Requires SUPABASE_SERVICE_ROLE_KEY environment variable\ncd packages/core/supabase-js\nexport SUPABASE_SERVICE_ROLE_KEY=\"$(npx supabase status --output json | jq -r '.SERVICE_ROLE_KEY')\"\ncd ../../..\nnpx nx test:integration supabase-js\n\n# Run browser-based integration tests (requires Deno)\nnpx nx test:integration:browser supabase-js\n```"
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replay"
},
- {
- "kind": "text",
- "text": "\n\n#### Running All Tests\n\n"
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.presence"
},
- {
- "kind": "code",
- "text": "```bash\n# This runs type checking, unit tests, and integration tests sequentially\n# NOTE: Will fail if Supabase is not running or dependencies not updated\nnpx nx test:all supabase-js\n```"
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n**Common Issues and Solutions:**\n\n| Issue | Solution |\n| -------------------------------------------- | --------------------------------------------------------------- |\n| \"Cannot find module 'https://deno.land/...'\" | Deno tests incorrectly run by Jest - check "
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.key"
},
- {
- "kind": "code",
- "text": "`jest.config.ts`"
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.enabled"
},
- {
- "kind": "text",
- "text": " |\n| \"Port 54322 already allocated\" | Stop existing Supabase: "
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.private"
},
- {
- "kind": "code",
- "text": "`npx supabase stop --project-id `"
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelSendResponse"
},
- {
- "kind": "text",
- "text": " |\n| \"503 Service Unavailable\" for Edge Functions | Supabase not running - start with "
+ "1902": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
},
- {
- "kind": "code",
- "text": "`npx supabase start`"
+ "1903": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.__constructor"
},
- {
- "kind": "text",
- "text": " |\n| \"Uncommitted changes\" during type check | Commit changes or add "
+ "1904": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
},
- {
- "kind": "code",
- "text": "`--allow-dirty`"
+ "1905": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "endPoint"
},
- {
- "kind": "text",
- "text": " to JSR publish |\n| Integration tests fail with auth errors | Export "
+ "1906": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "options"
},
- {
- "kind": "code",
- "text": "`SUPABASE_SERVICE_ROLE_KEY`"
+ "1907": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessTokenValue"
},
- {
- "kind": "text",
- "text": " (see Integration Testing) |\n\n### Platform-Specific Testing\n\n#### Expo Testing (React Native)\n\n"
+ "1908": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.apiKey"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:expo supabase-js\n\n# Run Expo tests from the Expo test project\ncd packages/core/supabase-js/test/integration/expo\nnpm install\nnpm test\ncd ../../..\n```"
+ "1909": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channels"
},
- {
- "kind": "text",
- "text": "\n\n#### Next.js Testing (SSR)\n\n"
+ "1910": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endPoint"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:next supabase-js\n\n# 3. Install Playwright browsers and dependencies\nnpx playwright install --with-deps\n\n# Run Next.js tests from the Next test project\ncd packages/core/supabase-js/test/integration/next\nnpm install --legacy-peer-deps\nnpm run test\ncd ../../..\n```"
+ "1911": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.httpEndpoint"
},
- {
- "kind": "text",
- "text": "\n\n#### Deno Testing\n\n"
+ "1912": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.headers"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Deno must be installed (https://deno.land)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:deno supabase-js\n\n# Run Deno tests\nnpx nx test:deno supabase-js\n```"
+ "1913": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n### Edge Functions Testing\n\nThe project includes Edge Functions integration tests that require a local Supabase instance to be running.\n\n"
+ "1914": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Ensure Docker is installed and running\n# 2. Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# 3. Start Supabase locally (this will download and start all required containers)\nnpx supabase start\n\n# Wait for the output showing all services are ready, including:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Edge Runtime container\n\n# 4. Run the Edge Functions tests from the monorepo root\ncd ../../../ # Back to monorepo root\nnpx nx test:edge-functions supabase-js\n```"
+ "1916": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.params"
},
- {
- "kind": "text",
- "text": "\n\n**Important Notes:**\n\n- The Edge Functions tests will fail with 503 errors if Supabase is not running\n- If you encounter port conflicts (e.g., \"port 54322 already allocated\"), stop any existing Supabase instances:\n\n "
+ "1917": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n npx supabase stop --project-id \n # Or stop all Docker containers if unsure:\n docker ps | grep supabase # List all Supabase containers\n ```"
+ "1918": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "text",
- "text": "\n\n- The tests use the default local development credentials (anon key)\n- Edge Functions are automatically served when "
+ "1920": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.timeout"
},
- {
- "kind": "code",
- "text": "`supabase start`"
+ "1921": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.transport"
},
- {
- "kind": "text",
- "text": " is run\n\n#### Bun Testing\n\n"
+ "1922": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatIntervalMs"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Bun must be installed (https://bun.sh)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:bun supabase-js\n\n# Run Bun tests\nnpx nx test:bun supabase-js\n```"
+ "1923": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatTimer"
},
- {
- "kind": "text",
- "text": "\n\n#### WebSocket Browser Testing\n\n"
+ "1924": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.pendingHeartbeatRef"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Build the UMD bundle first:\nnpx nx build supabase-js\n\n# Run WebSocket browser tests with Playwright\ncd packages/core/supabase-js/test/integration/node-browser\nnpm install\ncp ../../../dist/umd/supabase.js .\nnpm run test\ncd ../../..\n```"
+ "1925": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatCallback"
},
- {
- "kind": "text",
- "text": "\n\n#### CI/CD Testing\n\nWhen running on CI, the tests automatically use the latest dependencies from the root project. The CI pipeline:\n\n1. Builds the main project with current dependencies\n2. Creates a package archive ("
+ "1926": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "1927": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": ") with the latest versions\n3. Uses this archive in Expo, Next.js, Deno, and Bun tests to ensure consistency\n\n### Updating Test Dependencies\n\nThe platform-specific tests (Expo, Next.js, Deno, Bun) use a packaged version of supabase-js rather than directly importing from source. This ensures they test the actual built package as it would be consumed by users.\n\n#### How It Works\n\n1. **Build** the current supabase-js package\n2. **Pack** it into a "
+ "1928": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "1929": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.ref"
},
- {
- "kind": "text",
- "text": " file (like "
+ "1930": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.reconnectTimer"
},
- {
- "kind": "code",
- "text": "`npm pack`"
+ "1931": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logger"
},
- {
- "kind": "text",
- "text": " does)\n3. **Copy** the "
+ "1932": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logLevel"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "1933": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.encode"
},
- {
- "kind": "text",
- "text": " to the test directory\n4. **Install** it in the test project\n\nThis mimics how real users would install and use the package.\n\n#### Update Scripts\n\n"
+ "1934": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.decode"
},
- {
- "kind": "code",
- "text": "```bash\n# Update ALL test environment dependencies at once\n# This builds, packs, and installs in all test directories\nnpx nx update:test-deps supabase-js\n\n# Or update specific test environments:\nnpx nx update:test-deps:expo supabase-js # Expo/React Native only\nnpx nx update:test-deps:next supabase-js # Next.js only\nnpx nx update:test-deps:deno supabase-js # Deno only\nnpx nx update:test-deps:bun supabase-js # Bun only\n```"
+ "1935": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.reconnectAfterMs"
},
- {
- "kind": "text",
- "text": "\n\n**When to Update:**\n\n- After making changes to the source code\n- Before running platform-specific tests locally\n- When debugging test failures that might be due to stale dependencies\n\n**Note:** CI automatically handles this, so manual updates are only needed for local development.\n\n### Test Coverage\n\n#### Viewing Coverage Reports\n\n"
+ "1936": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.conn"
},
- {
- "kind": "code",
- "text": "```bash\n# Generate coverage report\nnpx nx test:coverage supabase-js\n\n# Serve coverage report locally (opens interactive HTML report)\nnpx nx serve:coverage supabase-js\n# This starts a local server at http://localhost:3000 with the coverage report\n```"
+ "1937": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendBuffer"
},
- {
- "kind": "text",
- "text": "\n\nThe coverage report shows:\n\n- Line coverage\n- Branch coverage\n- Function coverage\n- Uncovered lines with highlights\n\nCoverage results are also automatically uploaded to Coveralls in CI for tracking over time.\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "1938": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.serializer"
},
- {
- "kind": "relative-link",
- "text": "../../../CONTRIBUTING.md",
- "target": 2
+ "1939": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.stateChangeCallbacks"
},
- {
- "kind": "text",
- "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
- }
- ],
- "symbolIdMap": {
- "0": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": ""
+ "1940": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "1": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "1941": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.open"
},
- "2": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "1942": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.close"
},
- "3": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "Database"
+ "1943": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.error"
},
- "4": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaNameOrClientOptions"
+ "1944": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.message"
},
- "5": {
- "sourceFileName": "src/index.ts",
+ "1945": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "1946": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "1947": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "1948": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "1949": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "1950": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "1951": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "1952": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "1953": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessToken"
+ },
+ "1954": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "6": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "1955": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "7": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaName"
+ "1956": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.worker"
},
- "8": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseUrl"
+ "1957": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerUrl"
},
- "9": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseKey"
+ "1958": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerRef"
},
- "10": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "options"
+ "1962": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- "11": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "1963": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- "12": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.__constructor"
+ "1964": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- "13": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "1965": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- "14": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "1966": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- "15": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "1967": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- "16": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "1968": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "code"
+ },
+ "1969": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "reason"
+ },
+ "1970": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "1971": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "1972": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "1973": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "1974": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "channel"
+ },
+ "1975": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "1976": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "1977": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
+ },
+ "1978": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
+ },
+ "1979": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "kind"
+ },
+ "1980": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "msg"
+ },
+ "1981": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
+ },
+ "1982": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
+ },
+ "1983": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
+ },
+ "1984": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
+ },
+ "1985": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
+ },
+ "1986": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
+ },
+ "1987": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
+ },
+ "1988": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
+ },
+ "1989": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
+ },
+ "1990": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "1991": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "1992": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "topic"
+ },
+ "1993": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "params"
+ },
+ "1994": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
+ },
+ "1995": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
+ },
+ "1996": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
+ },
+ "1997": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
+ },
+ "1998": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
+ },
+ "1999": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "token"
+ },
+ "2000": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
+ },
+ "2001": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
+ },
+ "2002": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
+ },
+ "2003": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
+ },
+ "2004": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "callback"
+ },
+ "2005": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "17": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2006": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "18": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2007": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- "19": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2008": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- "20": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2009": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- "21": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2011": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeClientOptions"
+ },
+ "2012": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "22": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2013": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.transport"
},
- "23": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2014": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "2015": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatIntervalMs"
+ },
+ "2016": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatCallback"
+ },
+ "2017": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "24": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2018": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "25": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2019": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
+ },
+ "2020": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logger"
+ },
+ "2021": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.encode"
+ },
+ "2022": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.decode"
+ },
+ "2023": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.reconnectAfterMs"
+ },
+ "2024": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "2025": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "26": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2026": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- "27": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2028": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.params"
+ },
+ "2029": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "28": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2030": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- "29": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2032": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.log_level"
+ },
+ "2033": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logLevel"
+ },
+ "2034": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "2035": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.worker"
+ },
+ "2036": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.workerUrl"
+ },
+ "2037": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.accessToken"
+ },
+ "2038": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "30": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2039": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "31": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseUrl"
+ "2040": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeMessage"
},
- "32": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseKey"
+ "2041": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- "33": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2042": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.topic"
},
- "34": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.auth"
+ "2043": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.event"
},
- "35": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtime"
+ "2044": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.payload"
},
- "36": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storage"
+ "2045": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.ref"
},
- "37": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtimeUrl"
+ "2046": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.join_ref"
},
- "38": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.authUrl"
+ "2047": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesFilter"
},
- "39": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageUrl"
+ "2048": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "40": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functionsUrl"
+ "2049": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
},
- "41": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rest"
+ "2050": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.schema"
},
- "42": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageKey"
+ "2051": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.table"
},
- "43": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.fetch"
+ "2052": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
+ },
+ "2053": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2054": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayload"
+ },
+ "2055": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2056": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2057": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2059": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresInsertPayload"
+ },
+ "2060": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2061": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
+ },
+ "2062": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
+ },
+ "2063": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
+ },
+ "2064": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2065": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2066": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2067": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2069": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresUpdatePayload"
+ },
+ "2070": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2071": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
+ },
+ "2072": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
+ },
+ "2073": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
+ },
+ "2074": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2075": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2076": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2078": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresDeletePayload"
+ },
+ "2079": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2080": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
+ },
+ "2081": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
+ },
+ "2082": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2083": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
+ },
+ "2084": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2085": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "2086": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2088": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceJoinPayload"
+ },
+ "2089": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "2090": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
+ },
+ "2091": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
+ },
+ "2092": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
+ },
+ "2093": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.newPresences"
+ },
+ "2094": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
+ },
+ "2095": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "2096": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2098": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceLeavePayload"
},
- "44": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2099": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "45": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2100": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
},
- "46": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "input"
+ "2101": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
},
- "47": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "init"
+ "2102": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
},
- "48": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "fetch"
+ "2103": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.leftPresences"
},
- "49": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "input"
+ "2104": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "50": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "init"
+ "2105": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "51": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.changedAccessToken"
+ "2106": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "52": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.accessToken"
+ "2108": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceState"
},
- "53": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2109": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "54": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2110": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2112": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
+ },
+ "2113": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "55": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.headers"
+ "2114": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "56": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseUrl"
+ "2116": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "57": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseKey"
+ "2117": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeRemoveChannelResponse"
},
- "58": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2118": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "59": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2119": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "60": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2120": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "61": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2121": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "62": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "TableName"
+ "2122": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "63": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Table"
+ "2123": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "64": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2124": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "65": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2125": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "66": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "ViewName"
+ "2126": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "67": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "View"
+ "2127": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "68": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2128": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "69": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2129": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "70": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2130": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "71": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "DynamicSchema"
+ "2131": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "72": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "schema"
+ "2132": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "73": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2133": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "74": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2134": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "75": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FnName"
+ "2135": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "76": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Args"
+ "2136": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "77": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FilterBuilder"
+ "2137": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "78": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "fn"
+ "2138": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory"
},
- "79": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "args"
+ "2140": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "80": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2141": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "81": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2142": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "82": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.head"
+ "2143": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "__type"
},
- "83": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.get"
+ "2144": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "url"
},
- "84": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.count"
+ "2145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "protocols"
},
- "85": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2146": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "86": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2147": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "87": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "name"
+ "2148": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "url"
},
- "88": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "opts"
+ "2149": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "protocols"
},
- "89": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2150": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "90": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2151": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "91": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2154": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike"
},
- "92": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2155": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CONNECTING"
},
- "93": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "channel"
+ "2156": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.OPEN"
},
- "94": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2157": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSING"
},
- "95": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2158": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSED"
},
- "121": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "2159": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.readyState"
},
- "122": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "2160": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.url"
},
- "123": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2161": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.protocol"
},
- "124": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2162": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "125": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2163": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "126": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2164": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "code"
},
- "127": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2165": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "reason"
},
- "128": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2166": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "129": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2167": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "130": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2168": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "data"
},
- "131": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2169": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onopen"
},
- "132": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2170": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "133": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
- },
- "134": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2171": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "135": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2172": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "136": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2173": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "137": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2174": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onmessage"
},
- "138": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseClientOptions"
+ "2175": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "139": {
- "sourceFileName": "src/lib/types.ts",
+ "2176": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "140": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.db"
+ "2177": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "141": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2178": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "142": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.schema"
+ "2179": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onclose"
},
- "143": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.auth"
+ "2180": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "144": {
- "sourceFileName": "src/lib/types.ts",
+ "2181": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "145": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.autoRefreshToken"
+ "2182": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "146": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storageKey"
+ "2183": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "147": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.persistSession"
+ "2184": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onerror"
},
- "148": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.detectSessionInUrl"
+ "2185": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "149": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2186": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "150": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userStorage"
+ "2187": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "151": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.flowType"
+ "2188": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "152": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.debug"
+ "2189": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "153": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lock"
+ "2190": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "154": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.realtime"
+ "2191": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "155": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2192": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "156": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.global"
+ "2193": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "157": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2194": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "158": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.fetch"
+ "2195": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "159": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.headers"
+ "2196": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "160": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.accessToken"
+ "2197": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.binaryType"
},
- "161": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2198": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.bufferedAmount"
},
- "162": {
- "sourceFileName": "src/lib/types.ts",
+ "2199": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.extensions"
+ },
+ "2200": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.dispatchEvent"
+ },
+ "2201": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "163": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SchemaName"
+ "2202": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "164": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryResult"
+ "2203": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "event"
},
- "165": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2204": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "166": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryData"
+ "2205": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "167": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2206": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "168": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "2207": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "address"
},
- "169": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2208": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "subprotocols"
},
- "170": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryError"
+ "2209": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor.__index"
}
},
"files": {
"entries": {
"1": "src/index.ts",
- "2": "../../../CONTRIBUTING.md"
+ "2": "TESTING.md",
+ "3": "../../../CONTRIBUTING.md"
},
"reflections": {
"1": 0
@@ -6248,14 +60661,14 @@
"flags": {},
"children": [
{
- "id": 1386,
+ "id": 1460,
"name": "AuthApiError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1387,
+ "id": 1461,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -6265,12 +60678,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L33"
}
],
"signatures": [
{
- "id": 1388,
+ "id": 1462,
"name": "AuthApiError",
"variant": "signature",
"kind": 16384,
@@ -6280,12 +60693,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L33"
}
],
"parameters": [
{
- "id": 1389,
+ "id": 1463,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -6296,7 +60709,7 @@
}
},
{
- "id": 1390,
+ "id": 1464,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -6307,7 +60720,7 @@
}
},
{
- "id": 1391,
+ "id": 1465,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -6329,25 +60742,25 @@
],
"type": {
"type": "reference",
- "target": 1386,
+ "target": 1460,
"name": "AuthApiError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1378,
+ "target": 1452,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1377,
+ "target": 1451,
"name": "AuthError.constructor"
}
},
{
- "id": 1393,
+ "id": 1467,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -6376,7 +60789,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -6405,7 +60818,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1394,
+ "id": 1468,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6418,12 +60831,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1382,
+ "target": 1456,
"name": "AuthError.code"
}
},
{
- "id": 1392,
+ "id": 1466,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -6441,7 +60854,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L31"
}
],
"type": {
@@ -6450,7 +60863,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1384,
+ "target": 1458,
"name": "AuthError.status"
}
}
@@ -6458,11 +60871,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1387]
+ "children": [1461]
},
{
"title": "Properties",
- "children": [1393, 1392]
+ "children": [1467, 1466]
}
],
"sources": [
@@ -6470,27 +60883,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 30,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L30"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1376,
+ "id": 1450,
"name": "AuthError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1377,
+ "id": 1451,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -6500,12 +60913,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L18"
}
],
"signatures": [
{
- "id": 1378,
+ "id": 1452,
"name": "AuthError",
"variant": "signature",
"kind": 16384,
@@ -6515,12 +60928,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L18"
}
],
"parameters": [
{
- "id": 1379,
+ "id": 1453,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -6531,7 +60944,7 @@
}
},
{
- "id": 1380,
+ "id": 1454,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -6544,7 +60957,7 @@
}
},
{
- "id": 1381,
+ "id": 1455,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -6559,7 +60972,7 @@
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -6577,7 +60990,7 @@
}
},
{
- "id": 1382,
+ "id": 1456,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -6604,7 +61017,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -6633,7 +61046,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1383,
+ "id": 1457,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6646,7 +61059,7 @@
}
},
{
- "id": 1384,
+ "id": 1458,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -6664,7 +61077,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"type": {
@@ -6685,11 +61098,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1377]
+ "children": [1451]
},
{
"title": "Properties",
- "children": [1382, 1384]
+ "children": [1456, 1458]
}
],
"sources": [
@@ -6697,7 +61110,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 4,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L4"
}
],
"extendedTypes": [
@@ -6714,30 +61127,30 @@
"extendedBy": [
{
"type": "reference",
- "target": 1386,
+ "target": 1460,
"name": "AuthApiError"
},
{
"type": "reference",
- "target": 1396,
+ "target": 1470,
"name": "AuthUnknownError"
},
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError"
}
]
},
{
- "id": 1443,
+ "id": 1517,
"name": "AuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1444,
+ "id": 1518,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -6747,12 +61160,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L90"
}
],
"signatures": [
{
- "id": 1445,
+ "id": 1519,
"name": "AuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 16384,
@@ -6762,12 +61175,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 90,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L90"
}
],
"parameters": [
{
- "id": 1446,
+ "id": 1520,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -6778,7 +61191,7 @@
}
},
{
- "id": 1447,
+ "id": 1521,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -6793,14 +61206,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1448,
+ "id": 1522,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1450,
+ "id": 1524,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -6810,7 +61223,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 90,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L90"
}
],
"type": {
@@ -6819,7 +61232,7 @@
}
},
{
- "id": 1449,
+ "id": 1523,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -6829,7 +61242,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 90,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L90"
}
],
"type": {
@@ -6841,7 +61254,7 @@
"groups": [
{
"title": "Properties",
- "children": [1450, 1449]
+ "children": [1524, 1523]
}
],
"sources": [
@@ -6849,7 +61262,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 90,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L90"
}
]
}
@@ -6861,25 +61274,25 @@
],
"type": {
"type": "reference",
- "target": 1443,
+ "target": 1517,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1467,
+ "id": 1541,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -6908,7 +61321,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -6937,7 +61350,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1468,
+ "id": 1542,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -6950,12 +61363,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1451,
+ "id": 1525,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -6965,7 +61378,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
],
"type": {
@@ -6978,14 +61391,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1452,
+ "id": 1526,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1454,
+ "id": 1528,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -6995,7 +61408,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
],
"type": {
@@ -7004,7 +61417,7 @@
}
},
{
- "id": 1453,
+ "id": 1527,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -7014,7 +61427,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
],
"type": {
@@ -7026,7 +61439,7 @@
"groups": [
{
"title": "Properties",
- "children": [1454, 1453]
+ "children": [1528, 1527]
}
],
"sources": [
@@ -7034,7 +61447,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
]
}
@@ -7044,7 +61457,7 @@
"defaultValue": "null"
},
{
- "id": 1465,
+ "id": 1539,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7056,7 +61469,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -7065,12 +61478,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1466,
+ "id": 1540,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -7090,7 +61503,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -7099,12 +61512,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
},
{
- "id": 1455,
+ "id": 1529,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -7114,12 +61527,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L95"
}
],
"signatures": [
{
- "id": 1456,
+ "id": 1530,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -7129,20 +61542,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 95,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L95"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1457,
+ "id": 1531,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1461,
+ "id": 1535,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -7152,7 +61565,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 100,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L100"
}
],
"type": {
@@ -7165,14 +61578,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1462,
+ "id": 1536,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1464,
+ "id": 1538,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -7182,7 +61595,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
],
"type": {
@@ -7191,7 +61604,7 @@
}
},
{
- "id": 1463,
+ "id": 1537,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -7201,7 +61614,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
],
"type": {
@@ -7213,7 +61626,7 @@
"groups": [
{
"title": "Properties",
- "children": [1464, 1463]
+ "children": [1538, 1537]
}
],
"sources": [
@@ -7221,7 +61634,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 89,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L89"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L89"
}
]
}
@@ -7231,7 +61644,7 @@
"defaultValue": "..."
},
{
- "id": 1459,
+ "id": 1533,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -7241,7 +61654,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 98,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L98"
}
],
"type": {
@@ -7251,7 +61664,7 @@
"defaultValue": "..."
},
{
- "id": 1458,
+ "id": 1532,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7261,7 +61674,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 97,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L97"
}
],
"type": {
@@ -7271,7 +61684,7 @@
"defaultValue": "..."
},
{
- "id": 1460,
+ "id": 1534,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -7281,7 +61694,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 99,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L99"
}
],
"type": {
@@ -7294,7 +61707,7 @@
"groups": [
{
"title": "Properties",
- "children": [1461, 1459, 1458, 1460]
+ "children": [1535, 1533, 1532, 1534]
}
],
"sources": [
@@ -7302,7 +61715,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 96,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L96"
}
]
}
@@ -7314,15 +61727,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1444]
+ "children": [1518]
},
{
"title": "Properties",
- "children": [1467, 1451, 1465, 1466]
+ "children": [1541, 1525, 1539, 1540]
},
{
"title": "Methods",
- "children": [1455]
+ "children": [1529]
}
],
"sources": [
@@ -7330,27 +61743,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 88,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L88"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1434,
+ "id": 1508,
"name": "AuthInvalidCredentialsError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1435,
+ "id": 1509,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -7360,12 +61773,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L83"
}
],
"signatures": [
{
- "id": 1436,
+ "id": 1510,
"name": "AuthInvalidCredentialsError",
"variant": "signature",
"kind": 16384,
@@ -7375,12 +61788,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L83"
}
],
"parameters": [
{
- "id": 1437,
+ "id": 1511,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -7393,25 +61806,25 @@
],
"type": {
"type": "reference",
- "target": 1434,
+ "target": 1508,
"name": "AuthInvalidCredentialsError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1440,
+ "id": 1514,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -7440,7 +61853,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -7469,7 +61882,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1441,
+ "id": 1515,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -7482,12 +61895,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1438,
+ "id": 1512,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7499,7 +61912,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -7508,12 +61921,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1439,
+ "id": 1513,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -7533,7 +61946,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -7542,7 +61955,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -7550,11 +61963,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1435]
+ "children": [1509]
},
{
"title": "Properties",
- "children": [1440, 1438, 1439]
+ "children": [1514, 1512, 1513]
}
],
"sources": [
@@ -7562,27 +61975,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 82,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L82"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1519,
+ "id": 1593,
"name": "AuthInvalidJwtError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1520,
+ "id": 1594,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -7592,12 +62005,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 162,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L162"
}
],
"signatures": [
{
- "id": 1521,
+ "id": 1595,
"name": "AuthInvalidJwtError",
"variant": "signature",
"kind": 16384,
@@ -7607,12 +62020,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 162,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L162"
}
],
"parameters": [
{
- "id": 1522,
+ "id": 1596,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -7625,25 +62038,25 @@
],
"type": {
"type": "reference",
- "target": 1519,
+ "target": 1593,
"name": "AuthInvalidJwtError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1525,
+ "id": 1599,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -7672,7 +62085,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -7701,7 +62114,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1526,
+ "id": 1600,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -7714,12 +62127,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1523,
+ "id": 1597,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7731,7 +62144,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -7740,12 +62153,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1524,
+ "id": 1598,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -7765,7 +62178,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -7774,7 +62187,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -7782,11 +62195,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1520]
+ "children": [1594]
},
{
"title": "Properties",
- "children": [1525, 1523, 1524]
+ "children": [1599, 1597, 1598]
}
],
"sources": [
@@ -7794,27 +62207,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 161,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L161"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1426,
+ "id": 1500,
"name": "AuthInvalidTokenResponseError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1427,
+ "id": 1501,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -7824,12 +62237,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L77"
}
],
"signatures": [
{
- "id": 1428,
+ "id": 1502,
"name": "AuthInvalidTokenResponseError",
"variant": "signature",
"kind": 16384,
@@ -7839,30 +62252,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L77"
}
],
"type": {
"type": "reference",
- "target": 1426,
+ "target": 1500,
"name": "AuthInvalidTokenResponseError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1431,
+ "id": 1505,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -7891,7 +62304,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -7920,7 +62333,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1432,
+ "id": 1506,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -7933,12 +62346,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1429,
+ "id": 1503,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -7950,7 +62363,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -7959,12 +62372,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1430,
+ "id": 1504,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -7984,7 +62397,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -7993,7 +62406,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -8001,11 +62414,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1427]
+ "children": [1501]
},
{
"title": "Properties",
- "children": [1431, 1429, 1430]
+ "children": [1505, 1503, 1504]
}
],
"sources": [
@@ -8013,27 +62426,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 76,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L76"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1470,
+ "id": 1544,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1471,
+ "id": 1545,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -8043,12 +62456,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L114"
}
],
"signatures": [
{
- "id": 1472,
+ "id": 1546,
"name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
"kind": 16384,
@@ -8058,12 +62471,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L114"
}
],
"parameters": [
{
- "id": 1473,
+ "id": 1547,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -8074,7 +62487,7 @@
}
},
{
- "id": 1474,
+ "id": 1548,
"name": "details",
"variant": "param",
"kind": 32768,
@@ -8089,14 +62502,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1475,
+ "id": 1549,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1477,
+ "id": 1551,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8106,7 +62519,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 114,
"character": 57,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L114"
}
],
"type": {
@@ -8115,7 +62528,7 @@
}
},
{
- "id": 1476,
+ "id": 1550,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -8125,7 +62538,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 114,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L114"
}
],
"type": {
@@ -8137,7 +62550,7 @@
"groups": [
{
"title": "Properties",
- "children": [1477, 1476]
+ "children": [1551, 1550]
}
],
"sources": [
@@ -8145,7 +62558,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 114,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L114"
}
]
}
@@ -8157,25 +62570,25 @@
],
"type": {
"type": "reference",
- "target": 1470,
+ "target": 1544,
"name": "AuthPKCEGrantCodeExchangeError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1494,
+ "id": 1568,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8204,7 +62617,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -8233,7 +62646,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1495,
+ "id": 1569,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8246,12 +62659,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1478,
+ "id": 1552,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -8261,7 +62674,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
],
"type": {
@@ -8274,14 +62687,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1479,
+ "id": 1553,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1481,
+ "id": 1555,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8291,7 +62704,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
],
"type": {
@@ -8300,7 +62713,7 @@
}
},
{
- "id": 1480,
+ "id": 1554,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -8310,7 +62723,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
],
"type": {
@@ -8322,7 +62735,7 @@
"groups": [
{
"title": "Properties",
- "children": [1481, 1480]
+ "children": [1555, 1554]
}
],
"sources": [
@@ -8330,7 +62743,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
]
}
@@ -8340,7 +62753,7 @@
"defaultValue": "null"
},
{
- "id": 1492,
+ "id": 1566,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -8352,7 +62765,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -8361,12 +62774,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1493,
+ "id": 1567,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -8386,7 +62799,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -8395,12 +62808,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
},
{
- "id": 1482,
+ "id": 1556,
"name": "toJSON",
"variant": "declaration",
"kind": 2048,
@@ -8410,12 +62823,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L119"
}
],
"signatures": [
{
- "id": 1483,
+ "id": 1557,
"name": "toJSON",
"variant": "signature",
"kind": 4096,
@@ -8425,20 +62838,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L119"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1484,
+ "id": 1558,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1488,
+ "id": 1562,
"name": "details",
"variant": "declaration",
"kind": 1024,
@@ -8448,7 +62861,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 124,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L124"
}
],
"type": {
@@ -8461,14 +62874,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1489,
+ "id": 1563,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1491,
+ "id": 1565,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8478,7 +62891,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
],
"type": {
@@ -8487,7 +62900,7 @@
}
},
{
- "id": 1490,
+ "id": 1564,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -8497,7 +62910,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
],
"type": {
@@ -8509,7 +62922,7 @@
"groups": [
{
"title": "Properties",
- "children": [1491, 1490]
+ "children": [1565, 1564]
}
],
"sources": [
@@ -8517,7 +62930,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 112,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L112"
}
]
}
@@ -8527,7 +62940,7 @@
"defaultValue": "..."
},
{
- "id": 1486,
+ "id": 1560,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -8537,7 +62950,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 122,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L122"
}
],
"type": {
@@ -8547,7 +62960,7 @@
"defaultValue": "..."
},
{
- "id": 1485,
+ "id": 1559,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -8557,7 +62970,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 121,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L121"
}
],
"type": {
@@ -8567,7 +62980,7 @@
"defaultValue": "..."
},
{
- "id": 1487,
+ "id": 1561,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -8577,7 +62990,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 123,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L123"
}
],
"type": {
@@ -8590,7 +63003,7 @@
"groups": [
{
"title": "Properties",
- "children": [1488, 1486, 1485, 1487]
+ "children": [1562, 1560, 1559, 1561]
}
],
"sources": [
@@ -8598,7 +63011,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 120,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L120"
}
]
}
@@ -8610,15 +63023,15 @@
"groups": [
{
"title": "Constructors",
- "children": [1471]
+ "children": [1545]
},
{
"title": "Properties",
- "children": [1494, 1478, 1492, 1493]
+ "children": [1568, 1552, 1566, 1567]
},
{
"title": "Methods",
- "children": [1482]
+ "children": [1556]
}
],
"sources": [
@@ -8626,27 +63039,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 111,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L111"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1497,
+ "id": 1571,
"name": "AuthRetryableFetchError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1498,
+ "id": 1572,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -8656,12 +63069,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L130"
}
],
"signatures": [
{
- "id": 1499,
+ "id": 1573,
"name": "AuthRetryableFetchError",
"variant": "signature",
"kind": 16384,
@@ -8671,12 +63084,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L130"
}
],
"parameters": [
{
- "id": 1500,
+ "id": 1574,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -8687,7 +63100,7 @@
}
},
{
- "id": 1501,
+ "id": 1575,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -8700,25 +63113,25 @@
],
"type": {
"type": "reference",
- "target": 1497,
+ "target": 1571,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1504,
+ "id": 1578,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8747,7 +63160,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -8776,7 +63189,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1505,
+ "id": 1579,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -8789,12 +63202,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1502,
+ "id": 1576,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -8806,7 +63219,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -8815,12 +63228,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1503,
+ "id": 1577,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -8840,7 +63253,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -8849,7 +63262,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -8857,11 +63270,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1498]
+ "children": [1572]
},
{
"title": "Properties",
- "children": [1504, 1502, 1503]
+ "children": [1578, 1576, 1577]
}
],
"sources": [
@@ -8869,27 +63282,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 129,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L129"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1418,
+ "id": 1492,
"name": "AuthSessionMissingError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1419,
+ "id": 1493,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -8899,12 +63312,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 67,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L67"
}
],
"signatures": [
{
- "id": 1420,
+ "id": 1494,
"name": "AuthSessionMissingError",
"variant": "signature",
"kind": 16384,
@@ -8914,30 +63327,30 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 67,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L67"
}
],
"type": {
"type": "reference",
- "target": 1418,
+ "target": 1492,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1423,
+ "id": 1497,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -8966,7 +63379,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -8995,7 +63408,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1424,
+ "id": 1498,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9008,12 +63421,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1421,
+ "id": 1495,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -9025,7 +63438,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -9034,12 +63447,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1422,
+ "id": 1496,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -9059,7 +63472,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -9068,7 +63481,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -9076,11 +63489,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1419]
+ "children": [1493]
},
{
"title": "Properties",
- "children": [1423, 1421, 1422]
+ "children": [1497, 1495, 1496]
}
],
"sources": [
@@ -9088,27 +63501,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 66,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L66"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1396,
+ "id": 1470,
"name": "AuthUnknownError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1397,
+ "id": 1471,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -9118,12 +63531,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L48"
}
],
"signatures": [
{
- "id": 1398,
+ "id": 1472,
"name": "AuthUnknownError",
"variant": "signature",
"kind": 16384,
@@ -9133,12 +63546,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L48"
}
],
"parameters": [
{
- "id": 1399,
+ "id": 1473,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -9149,7 +63562,7 @@
}
},
{
- "id": 1400,
+ "id": 1474,
"name": "originalError",
"variant": "param",
"kind": 32768,
@@ -9162,25 +63575,25 @@
],
"type": {
"type": "reference",
- "target": 1396,
+ "target": 1470,
"name": "AuthUnknownError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1378,
+ "target": 1452,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1377,
+ "target": 1451,
"name": "AuthError.constructor"
}
},
{
- "id": 1402,
+ "id": 1476,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -9209,7 +63622,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -9238,7 +63651,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1403,
+ "id": 1477,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9251,12 +63664,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1382,
+ "target": 1456,
"name": "AuthError.code"
}
},
{
- "id": 1401,
+ "id": 1475,
"name": "originalError",
"variant": "declaration",
"kind": 1024,
@@ -9266,7 +63679,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 46,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L46"
}
],
"type": {
@@ -9275,7 +63688,7 @@
}
},
{
- "id": 1404,
+ "id": 1478,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -9295,7 +63708,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L14"
}
],
"type": {
@@ -9313,7 +63726,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1384,
+ "target": 1458,
"name": "AuthError.status"
}
}
@@ -9321,11 +63734,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1397]
+ "children": [1471]
},
{
"title": "Properties",
- "children": [1402, 1401, 1404]
+ "children": [1476, 1475, 1478]
}
],
"sources": [
@@ -9333,20 +63746,20 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 45,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L45"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1507,
+ "id": 1581,
"name": "AuthWeakPasswordError",
"variant": "declaration",
"kind": 128,
@@ -9361,7 +63774,7 @@
},
"children": [
{
- "id": 1508,
+ "id": 1582,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -9371,12 +63784,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L150"
}
],
"signatures": [
{
- "id": 1509,
+ "id": 1583,
"name": "AuthWeakPasswordError",
"variant": "signature",
"kind": 16384,
@@ -9386,12 +63799,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 150,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L150"
}
],
"parameters": [
{
- "id": 1510,
+ "id": 1584,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -9402,7 +63815,7 @@
}
},
{
- "id": 1511,
+ "id": 1585,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -9413,7 +63826,7 @@
}
},
{
- "id": 1512,
+ "id": 1586,
"name": "reasons",
"variant": "param",
"kind": 32768,
@@ -9442,25 +63855,25 @@
],
"type": {
"type": "reference",
- "target": 1507,
+ "target": 1581,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1408,
+ "target": 1482,
"name": "CustomAuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1407,
+ "target": 1481,
"name": "CustomAuthError.constructor"
}
},
{
- "id": 1516,
+ "id": 1590,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -9489,7 +63902,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -9518,7 +63931,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1517,
+ "id": 1591,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9531,12 +63944,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1415,
+ "target": 1489,
"name": "CustomAuthError.code"
}
},
{
- "id": 1514,
+ "id": 1588,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -9548,7 +63961,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -9557,12 +63970,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1413,
+ "target": 1487,
"name": "CustomAuthError.name"
}
},
{
- "id": 1513,
+ "id": 1587,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -9580,7 +63993,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L148"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L148"
}
],
"type": {
@@ -9605,7 +64018,7 @@
}
},
{
- "id": 1515,
+ "id": 1589,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -9625,7 +64038,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -9634,7 +64047,7 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1414,
+ "target": 1488,
"name": "CustomAuthError.status"
}
}
@@ -9642,11 +64055,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1508]
+ "children": [1582]
},
{
"title": "Properties",
- "children": [1516, 1514, 1513, 1515]
+ "children": [1590, 1588, 1587, 1589]
}
],
"sources": [
@@ -9654,27 +64067,27 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 144,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L144"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L144"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
}
]
},
{
- "id": 1406,
+ "id": 1480,
"name": "CustomAuthError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 1407,
+ "id": 1481,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -9684,12 +64097,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L59"
}
],
"signatures": [
{
- "id": 1408,
+ "id": 1482,
"name": "CustomAuthError",
"variant": "signature",
"kind": 16384,
@@ -9699,12 +64112,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L59"
}
],
"parameters": [
{
- "id": 1409,
+ "id": 1483,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -9715,7 +64128,7 @@
}
},
{
- "id": 1410,
+ "id": 1484,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -9726,7 +64139,7 @@
}
},
{
- "id": 1411,
+ "id": 1485,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -9737,7 +64150,7 @@
}
},
{
- "id": 1412,
+ "id": 1486,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -9759,25 +64172,25 @@
],
"type": {
"type": "reference",
- "target": 1406,
+ "target": 1480,
"name": "CustomAuthError",
"package": "@supabase/auth-js"
},
"overwrites": {
"type": "reference",
- "target": 1378,
+ "target": 1452,
"name": "AuthError.constructor"
}
}
],
"overwrites": {
"type": "reference",
- "target": 1377,
+ "target": 1451,
"name": "AuthError.constructor"
}
},
{
- "id": 1415,
+ "id": 1489,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -9806,7 +64219,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L11"
}
],
"type": {
@@ -9835,7 +64248,7 @@
{
"type": "reflection",
"declaration": {
- "id": 1416,
+ "id": 1490,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -9848,12 +64261,12 @@
},
"inheritedFrom": {
"type": "reference",
- "target": 1382,
+ "target": 1456,
"name": "AuthError.code"
}
},
{
- "id": 1413,
+ "id": 1487,
"name": "name",
"variant": "declaration",
"kind": 1024,
@@ -9863,7 +64276,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 56,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L56"
}
],
"type": {
@@ -9877,7 +64290,7 @@
}
},
{
- "id": 1414,
+ "id": 1488,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -9895,7 +64308,7 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L57"
}
],
"type": {
@@ -9904,7 +64317,7 @@
},
"overwrites": {
"type": "reference",
- "target": 1384,
+ "target": 1458,
"name": "AuthError.status"
}
}
@@ -9912,11 +64325,11 @@
"groups": [
{
"title": "Constructors",
- "children": [1407]
+ "children": [1481]
},
{
"title": "Properties",
- "children": [1415, 1413, 1414]
+ "children": [1489, 1487, 1488]
}
],
"sources": [
@@ -9924,13 +64337,13 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 55,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L55"
}
],
"extendedTypes": [
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -9938,42 +64351,42 @@
"extendedBy": [
{
"type": "reference",
- "target": 1418,
+ "target": 1492,
"name": "AuthSessionMissingError"
},
{
"type": "reference",
- "target": 1426,
+ "target": 1500,
"name": "AuthInvalidTokenResponseError"
},
{
"type": "reference",
- "target": 1434,
+ "target": 1508,
"name": "AuthInvalidCredentialsError"
},
{
"type": "reference",
- "target": 1443,
+ "target": 1517,
"name": "AuthImplicitGrantRedirectError"
},
{
"type": "reference",
- "target": 1470,
+ "target": 1544,
"name": "AuthPKCEGrantCodeExchangeError"
},
{
"type": "reference",
- "target": 1497,
+ "target": 1571,
"name": "AuthRetryableFetchError"
},
{
"type": "reference",
- "target": 1507,
+ "target": 1581,
"name": "AuthWeakPasswordError"
},
{
"type": "reference",
- "target": 1519,
+ "target": 1593,
"name": "AuthInvalidJwtError"
}
]
@@ -9994,9 +64407,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 47,
+ "line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L48"
}
],
"signatures": [
@@ -10009,9 +64422,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 47,
+ "line": 48,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L48"
}
],
"parameters": [
@@ -10041,9 +64454,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 56,
+ "line": 57,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L57"
}
],
"type": {
@@ -10061,8 +64474,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -10102,18 +64515,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -10175,8 +64588,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -10198,18 +64611,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -10270,9 +64683,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 53,
+ "line": 54,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L54"
}
],
"type": {
@@ -10286,9 +64699,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 53,
+ "line": 54,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L54"
}
],
"indexSignatures": [
@@ -10301,9 +64714,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 54,
+ "line": 55,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L55"
}
],
"parameters": [
@@ -10338,9 +64751,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 52,
+ "line": 53,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L53"
}
],
"type": {
@@ -10359,9 +64772,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 51,
+ "line": 52,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L51"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L52"
}
]
}
@@ -10395,14 +64808,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 33,
+ "line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L34"
}
],
"type": {
"type": "reference",
- "target": 1240,
+ "target": 1263,
"name": "GoTrueAdminMFAApi",
"package": "@supabase/auth-js"
}
@@ -10424,14 +64837,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 39,
+ "line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L40"
}
],
"type": {
"type": "reference",
- "target": 1342,
+ "target": 1373,
"name": "GoTrueAdminOAuthApi",
"package": "@supabase/auth-js"
}
@@ -10445,9 +64858,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 177,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L179"
}
],
"signatures": [
@@ -10476,9 +64889,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 177,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L179"
}
],
"parameters": [
@@ -10490,7 +64903,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 842,
+ "target": 865,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -10505,7 +64918,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10525,9 +64938,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 297,
+ "line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L299"
}
],
"signatures": [
@@ -10556,9 +64969,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 297,
+ "line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L299"
}
],
"parameters": [
@@ -10619,7 +65032,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10639,9 +65052,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 143,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L145"
}
],
"signatures": [
@@ -10662,9 +65075,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 143,
+ "line": 145,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L145"
}
],
"parameters": [
@@ -10676,7 +65089,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 1050,
+ "target": 1073,
"name": "GenerateLinkParams",
"package": "@supabase/auth-js"
}
@@ -10691,7 +65104,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1051,
+ "target": 1074,
"name": "GenerateLinkResponse",
"package": "@supabase/auth-js"
}
@@ -10711,9 +65124,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 246,
+ "line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L246"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L248"
}
],
"signatures": [
@@ -10734,9 +65147,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 246,
+ "line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L246"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L248"
}
],
"parameters": [
@@ -10777,7 +65190,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10797,9 +65210,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 110,
+ "line": 112,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L112"
}
],
"signatures": [
@@ -10820,9 +65233,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 110,
+ "line": 112,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L112"
}
],
"parameters": [
@@ -10895,9 +65308,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 114,
+ "line": 116,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L116"
}
],
"type": {
@@ -10924,9 +65337,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 117,
+ "line": 119,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L119"
}
],
"type": {
@@ -10944,9 +65357,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 112,
+ "line": 114,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L114"
}
]
}
@@ -10963,7 +65376,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -10983,9 +65396,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 199,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L201"
}
],
"signatures": [
@@ -11014,9 +65427,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 199,
+ "line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L201"
}
],
"parameters": [
@@ -11054,7 +65467,7 @@
},
"type": {
"type": "reference",
- "target": 1261,
+ "target": 1284,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -11088,9 +65501,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
],
"type": {
@@ -11114,9 +65527,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
],
"type": {
@@ -11133,16 +65546,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -11158,16 +65571,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
]
}
},
{
"type": "reference",
- "target": 1254,
+ "target": 1277,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -11183,9 +65596,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
],
"type": {
@@ -11203,9 +65616,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 202,
+ "line": 204,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L202"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L204"
}
]
}
@@ -11228,9 +65641,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 203,
+ "line": 205,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L205"
}
],
"type": {
@@ -11251,9 +65664,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 203,
+ "line": 205,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L205"
}
],
"type": {
@@ -11270,9 +65683,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 203,
+ "line": 205,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L205"
}
]
}
@@ -11287,14 +65700,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 203,
+ "line": 205,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L205"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11309,9 +65722,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 203,
+ "line": 205,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L205"
}
]
}
@@ -11334,9 +65747,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 79,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L81"
}
],
"signatures": [
@@ -11357,9 +65770,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 79,
+ "line": 81,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L81"
}
],
"parameters": [
@@ -11441,9 +65854,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 82,
+ "line": 84,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L84"
}
],
"type": {
@@ -11460,9 +65873,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 82,
+ "line": 84,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L84"
}
],
"type": {
@@ -11474,7 +65887,7 @@
},
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -11491,9 +65904,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 82,
+ "line": 84,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L84"
}
]
}
@@ -11514,9 +65927,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 270,
+ "line": 272,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L272"
}
],
"signatures": [
@@ -11537,9 +65950,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 270,
+ "line": 272,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L270"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L272"
}
],
"parameters": [
@@ -11578,7 +65991,7 @@
},
"type": {
"type": "reference",
- "target": 842,
+ "target": 865,
"name": "AdminUserAttributes",
"package": "@supabase/auth-js"
}
@@ -11593,7 +66006,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -11622,21 +66035,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueAdminApi.ts",
- "line": 31,
+ "line": 32,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueAdminApi.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueAdminApi.ts#L32"
}
]
},
{
- "id": 100,
+ "id": 107,
"name": "GoTrueClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 102,
+ "id": 109,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -11644,14 +66057,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 267,
+ "line": 277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L277"
}
],
"signatures": [
{
- "id": 103,
+ "id": 110,
"name": "GoTrueClient",
"variant": "signature",
"kind": 16384,
@@ -11667,21 +66080,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 267,
+ "line": 277,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L277"
}
],
"parameters": [
{
- "id": 104,
+ "id": 111,
"name": "options",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 675,
+ "target": 698,
"name": "GoTrueClientOptions",
"package": "@supabase/auth-js"
}
@@ -11689,7 +66102,7 @@
],
"type": {
"type": "reference",
- "target": 100,
+ "target": 107,
"name": "GoTrueClient",
"package": "@supabase/auth-js",
"qualifiedName": "default"
@@ -11698,7 +66111,7 @@
]
},
{
- "id": 106,
+ "id": 113,
"name": "admin",
"variant": "declaration",
"kind": 1024,
@@ -11714,9 +66127,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 194,
+ "line": 198,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L198"
}
],
"type": {
@@ -11728,7 +66141,7 @@
}
},
{
- "id": 107,
+ "id": 114,
"name": "mfa",
"variant": "declaration",
"kind": 1024,
@@ -11744,20 +66157,49 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 198,
+ "line": 202,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L202"
}
],
"type": {
"type": "reference",
- "target": 1110,
+ "target": 1133,
"name": "GoTrueMFAApi",
"package": "@supabase/auth-js"
}
},
{
- "id": 182,
+ "id": 115,
+ "name": "oauth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the OAuth 2.1 authorization server methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\nUsed to implement the authorization code flow on the consent page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/GoTrueClient.ts",
+ "line": 208,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L208"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1416,
+ "name": "AuthOAuthServerApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 190,
"name": "exchangeCodeForSession",
"variant": "declaration",
"kind": 2048,
@@ -11765,14 +66207,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 679,
+ "line": 695,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L679"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L695"
}
],
"signatures": [
{
- "id": 183,
+ "id": 191,
"name": "exchangeCodeForSession",
"variant": "signature",
"kind": 4096,
@@ -11788,14 +66230,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 679,
+ "line": 695,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L679"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L695"
}
],
"parameters": [
{
- "id": 184,
+ "id": 192,
"name": "authCode",
"variant": "param",
"kind": 32768,
@@ -11815,7 +66257,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 738,
+ "target": 761,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -11827,7 +66269,7 @@
]
},
{
- "id": 614,
+ "id": 637,
"name": "getClaims",
"variant": "declaration",
"kind": 2048,
@@ -11835,14 +66277,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3401,
+ "line": 3564,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3401"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3564"
}
],
"signatures": [
{
- "id": 615,
+ "id": 638,
"name": "getClaims",
"variant": "signature",
"kind": 4096,
@@ -11884,14 +66326,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3401,
+ "line": 3564,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3401"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3564"
}
],
"parameters": [
{
- "id": 616,
+ "id": 639,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -11921,7 +66363,7 @@
}
},
{
- "id": 617,
+ "id": 640,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -11937,14 +66379,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 618,
+ "id": 641,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 620,
+ "id": 643,
"name": "allowExpired",
"variant": "declaration",
"kind": 1024,
@@ -11978,9 +66420,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3410,
+ "line": 3573,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3410"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3573"
}
],
"type": {
@@ -11989,7 +66431,7 @@
}
},
{
- "id": 621,
+ "id": 644,
"name": "jwks",
"variant": "declaration",
"kind": 1024,
@@ -12007,22 +66449,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3413,
+ "line": 3576,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3413"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3576"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 622,
+ "id": 645,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 623,
+ "id": 646,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -12030,16 +66472,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3413,
+ "line": 3576,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3413"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3576"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1293,
+ "target": 1316,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -12049,22 +66491,22 @@
"groups": [
{
"title": "Properties",
- "children": [623]
+ "children": [646]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3413,
+ "line": 3576,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3413"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3576"
}
]
}
}
},
{
- "id": 619,
+ "id": 642,
"name": "keys",
"variant": "declaration",
"kind": 1024,
@@ -12088,16 +66530,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3407,
+ "line": 3570,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3407"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3570"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1293,
+ "target": 1316,
"name": "JWK",
"package": "@supabase/auth-js"
}
@@ -12107,15 +66549,15 @@
"groups": [
{
"title": "Properties",
- "children": [620, 621, 619]
+ "children": [643, 644, 642]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3403,
+ "line": 3566,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3403"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3566"
}
]
}
@@ -12136,14 +66578,14 @@
{
"type": "reflection",
"declaration": {
- "id": 624,
+ "id": 647,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 625,
+ "id": 648,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12151,22 +66593,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3417,
+ "line": 3580,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3580"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 626,
+ "id": 649,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 627,
+ "id": 650,
"name": "claims",
"variant": "declaration",
"kind": 1024,
@@ -12174,20 +66616,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3417,
+ "line": 3580,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3580"
}
],
"type": {
"type": "reference",
- "target": 1289,
+ "target": 1312,
"name": "JwtPayload",
"package": "@supabase/auth-js"
}
},
{
- "id": 628,
+ "id": 651,
"name": "header",
"variant": "declaration",
"kind": 1024,
@@ -12195,20 +66637,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3417,
+ "line": 3580,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3580"
}
],
"type": {
"type": "reference",
- "target": 1274,
+ "target": 1297,
"name": "JwtHeader",
"package": "@supabase/auth-js"
}
},
{
- "id": 629,
+ "id": 652,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -12216,9 +66658,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3417,
+ "line": 3580,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3580"
}
],
"type": {
@@ -12235,22 +66677,22 @@
"groups": [
{
"title": "Properties",
- "children": [627, 628, 629]
+ "children": [650, 651, 652]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3417,
+ "line": 3580,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3580"
}
]
}
}
},
{
- "id": 630,
+ "id": 653,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12258,9 +66700,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3418,
+ "line": 3581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3418"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3581"
}
],
"type": {
@@ -12272,15 +66714,15 @@
"groups": [
{
"title": "Properties",
- "children": [625, 630]
+ "children": [648, 653]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3416,
+ "line": 3579,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3416"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3579"
}
]
}
@@ -12288,14 +66730,14 @@
{
"type": "reflection",
"declaration": {
- "id": 631,
+ "id": 654,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 632,
+ "id": 655,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12303,9 +66745,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3420,
+ "line": 3583,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3420"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3583"
}
],
"type": {
@@ -12314,7 +66756,7 @@
}
},
{
- "id": 633,
+ "id": 656,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12322,14 +66764,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3420,
+ "line": 3583,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3420"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3583"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12338,15 +66780,15 @@
"groups": [
{
"title": "Properties",
- "children": [632, 633]
+ "children": [655, 656]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3420,
+ "line": 3583,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3420"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3583"
}
]
}
@@ -12354,14 +66796,14 @@
{
"type": "reflection",
"declaration": {
- "id": 634,
+ "id": 657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 635,
+ "id": 658,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12369,9 +66811,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3421,
+ "line": 3584,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3421"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3584"
}
],
"type": {
@@ -12380,7 +66822,7 @@
}
},
{
- "id": 636,
+ "id": 659,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12388,9 +66830,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3421,
+ "line": 3584,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3421"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3584"
}
],
"type": {
@@ -12402,15 +66844,15 @@
"groups": [
{
"title": "Properties",
- "children": [635, 636]
+ "children": [658, 659]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 3421,
+ "line": 3584,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L3421"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L3584"
}
]
}
@@ -12425,7 +66867,7 @@
]
},
{
- "id": 257,
+ "id": 265,
"name": "getSession",
"variant": "declaration",
"kind": 2048,
@@ -12433,14 +66875,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1383,
+ "line": 1399,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1383"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1399"
}
],
"signatures": [
{
- "id": 258,
+ "id": 266,
"name": "getSession",
"variant": "signature",
"kind": 4096,
@@ -12465,9 +66907,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1383,
+ "line": 1399,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1383"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1399"
}
],
"type": {
@@ -12483,14 +66925,14 @@
{
"type": "reflection",
"declaration": {
- "id": 259,
+ "id": 267,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 260,
+ "id": 268,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12498,22 +66940,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1476,
+ "line": 1492,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1476"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1492"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 261,
+ "id": 269,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 262,
+ "id": 270,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -12521,14 +66963,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1477,
+ "line": 1493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1477"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1493"
}
],
"type": {
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -12537,22 +66979,22 @@
"groups": [
{
"title": "Properties",
- "children": [262]
+ "children": [270]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1476,
+ "line": 1492,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1476"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1492"
}
]
}
}
},
{
- "id": 263,
+ "id": 271,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12560,9 +67002,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1479,
+ "line": 1495,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1479"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1495"
}
],
"type": {
@@ -12574,15 +67016,15 @@
"groups": [
{
"title": "Properties",
- "children": [260, 263]
+ "children": [268, 271]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1475,
+ "line": 1491,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1475"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1491"
}
]
}
@@ -12590,14 +67032,14 @@
{
"type": "reflection",
"declaration": {
- "id": 264,
+ "id": 272,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 265,
+ "id": 273,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12605,22 +67047,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1482,
+ "line": 1498,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1498"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 266,
+ "id": 274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 267,
+ "id": 275,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -12628,9 +67070,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1483,
+ "line": 1499,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1483"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1499"
}
],
"type": {
@@ -12642,22 +67084,22 @@
"groups": [
{
"title": "Properties",
- "children": [267]
+ "children": [275]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1482,
+ "line": 1498,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1498"
}
]
}
}
},
{
- "id": 268,
+ "id": 276,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12665,14 +67107,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1485,
+ "line": 1501,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1485"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1501"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -12681,15 +67123,15 @@
"groups": [
{
"title": "Properties",
- "children": [265, 268]
+ "children": [273, 276]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1481,
+ "line": 1497,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1481"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1497"
}
]
}
@@ -12697,14 +67139,14 @@
{
"type": "reflection",
"declaration": {
- "id": 269,
+ "id": 277,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 270,
+ "id": 278,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12712,22 +67154,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1488,
+ "line": 1504,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1504"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 271,
+ "id": 279,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 272,
+ "id": 280,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -12735,9 +67177,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1489,
+ "line": 1505,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1489"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1505"
}
],
"type": {
@@ -12749,22 +67191,22 @@
"groups": [
{
"title": "Properties",
- "children": [272]
+ "children": [280]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1488,
+ "line": 1504,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1504"
}
]
}
}
},
{
- "id": 273,
+ "id": 281,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -12772,9 +67214,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1491,
+ "line": 1507,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1491"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1507"
}
],
"type": {
@@ -12786,15 +67228,15 @@
"groups": [
{
"title": "Properties",
- "children": [270, 273]
+ "children": [278, 281]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1487,
+ "line": 1503,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1487"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1503"
}
]
}
@@ -12809,7 +67251,7 @@
]
},
{
- "id": 320,
+ "id": 328,
"name": "getUser",
"variant": "declaration",
"kind": 2048,
@@ -12817,14 +67259,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1627,
+ "line": 1641,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1627"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1641"
}
],
"signatures": [
{
- "id": 321,
+ "id": 329,
"name": "getUser",
"variant": "signature",
"kind": 4096,
@@ -12840,14 +67282,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1627,
+ "line": 1641,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1627"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1641"
}
],
"parameters": [
{
- "id": 322,
+ "id": 330,
"name": "jwt",
"variant": "param",
"kind": 32768,
@@ -12877,7 +67319,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -12889,7 +67331,7 @@
]
},
{
- "id": 439,
+ "id": 447,
"name": "getUserIdentities",
"variant": "declaration",
"kind": 2048,
@@ -12897,14 +67339,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2207,
+ "line": 2221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2207"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2221"
}
],
"signatures": [
{
- "id": 440,
+ "id": 448,
"name": "getUserIdentities",
"variant": "signature",
"kind": 4096,
@@ -12920,9 +67362,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2207,
+ "line": 2221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2207"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2221"
}
],
"type": {
@@ -12938,14 +67380,14 @@
{
"type": "reflection",
"declaration": {
- "id": 441,
+ "id": 449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 442,
+ "id": 450,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -12953,22 +67395,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2223,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2223"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 443,
+ "id": 451,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 444,
+ "id": 452,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -12976,16 +67418,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2210,
+ "line": 2224,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2210"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2224"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 780,
+ "target": 803,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -12995,22 +67437,22 @@
"groups": [
{
"title": "Properties",
- "children": [444]
+ "children": [452]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2209,
+ "line": 2223,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2209"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2223"
}
]
}
}
},
{
- "id": 445,
+ "id": 453,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13018,9 +67460,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2212,
+ "line": 2226,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2212"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2226"
}
],
"type": {
@@ -13032,15 +67474,15 @@
"groups": [
{
"title": "Properties",
- "children": [442, 445]
+ "children": [450, 453]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2208,
+ "line": 2222,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2208"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2222"
}
]
}
@@ -13048,14 +67490,14 @@
{
"type": "reflection",
"declaration": {
- "id": 446,
+ "id": 454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 447,
+ "id": 455,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13063,9 +67505,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2214,
+ "line": 2228,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2214"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2228"
}
],
"type": {
@@ -13074,7 +67516,7 @@
}
},
{
- "id": 448,
+ "id": 456,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -13082,14 +67524,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2214,
+ "line": 2228,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2214"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2228"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -13098,15 +67540,15 @@
"groups": [
{
"title": "Properties",
- "children": [447, 448]
+ "children": [455, 456]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2214,
+ "line": 2228,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2214"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2228"
}
]
}
@@ -13121,7 +67563,7 @@
]
},
{
- "id": 166,
+ "id": 174,
"name": "initialize",
"variant": "declaration",
"kind": 2048,
@@ -13129,14 +67571,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 381,
+ "line": 397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L397"
}
],
"signatures": [
{
- "id": 167,
+ "id": 175,
"name": "initialize",
"variant": "signature",
"kind": 4096,
@@ -13152,9 +67594,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 381,
+ "line": 397,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L397"
}
],
"type": {
@@ -13166,7 +67608,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1250,
+ "target": 1273,
"name": "InitializeResult",
"package": "@supabase/auth-js"
}
@@ -13178,7 +67620,7 @@
]
},
{
- "id": 449,
+ "id": 457,
"name": "linkIdentity",
"variant": "declaration",
"kind": 2048,
@@ -13186,26 +67628,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2246,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2246"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2237,
+ "line": 2251,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2237"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2251"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2239,
+ "line": 2253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2239"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2253"
}
],
"signatures": [
{
- "id": 450,
+ "id": 458,
"name": "linkIdentity",
"variant": "signature",
"kind": 4096,
@@ -13221,21 +67663,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2232,
+ "line": 2246,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2232"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2246"
}
],
"parameters": [
{
- "id": 451,
+ "id": 459,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 902,
+ "target": 925,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -13250,7 +67692,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 747,
+ "target": 770,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -13260,7 +67702,7 @@
}
},
{
- "id": 452,
+ "id": 460,
"name": "linkIdentity",
"variant": "signature",
"kind": 4096,
@@ -13276,21 +67718,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2237,
+ "line": 2251,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2237"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2251"
}
],
"parameters": [
{
- "id": 453,
+ "id": 461,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 914,
+ "target": 937,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -13305,7 +67747,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 738,
+ "target": 761,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -13317,7 +67759,7 @@
]
},
{
- "id": 401,
+ "id": 409,
"name": "onAuthStateChange",
"variant": "declaration",
"kind": 2048,
@@ -13325,26 +67767,26 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2085,
+ "line": 2099,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2085"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2099"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2101,
+ "line": 2115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2115"
},
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2105,
+ "line": 2119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2105"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2119"
}
],
"signatures": [
{
- "id": 402,
+ "id": 410,
"name": "onAuthStateChange",
"variant": "signature",
"kind": 4096,
@@ -13360,14 +67802,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2085,
+ "line": 2099,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2085"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2099"
}
],
"parameters": [
{
- "id": 403,
+ "id": 411,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -13383,7 +67825,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 404,
+ "id": 412,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -13391,14 +67833,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2085,
+ "line": 2099,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2085"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2099"
}
],
"signatures": [
{
- "id": 405,
+ "id": 413,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -13406,27 +67848,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2085,
+ "line": 2099,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2085"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2099"
}
],
"parameters": [
{
- "id": 406,
+ "id": 414,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 665,
+ "target": 688,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 407,
+ "id": 415,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -13440,7 +67882,7 @@
},
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -13461,14 +67903,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 408,
+ "id": 416,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 409,
+ "id": 417,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13476,22 +67918,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2086,
+ "line": 2100,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2086"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2100"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 410,
+ "id": 418,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 411,
+ "id": 419,
"name": "subscription",
"variant": "declaration",
"kind": 1024,
@@ -13499,14 +67941,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2086,
+ "line": 2100,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2086"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2100"
}
],
"type": {
"type": "reference",
- "target": 855,
+ "target": 878,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -13515,15 +67957,15 @@
"groups": [
{
"title": "Properties",
- "children": [411]
+ "children": [419]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2086,
+ "line": 2100,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2086"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2100"
}
]
}
@@ -13533,22 +67975,22 @@
"groups": [
{
"title": "Properties",
- "children": [409]
+ "children": [417]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2085,
+ "line": 2099,
"character": 90,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2085"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2099"
}
]
}
}
},
{
- "id": 412,
+ "id": 420,
"name": "onAuthStateChange",
"variant": "signature",
"kind": 4096,
@@ -13583,14 +68025,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2101,
+ "line": 2115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2115"
}
],
"parameters": [
{
- "id": 413,
+ "id": 421,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -13606,7 +68048,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 414,
+ "id": 422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -13614,14 +68056,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2101,
+ "line": 2115,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2115"
}
],
"signatures": [
{
- "id": 415,
+ "id": 423,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -13629,27 +68071,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2101,
+ "line": 2115,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2115"
}
],
"parameters": [
{
- "id": 416,
+ "id": 424,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 665,
+ "target": 688,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 417,
+ "id": 425,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -13663,7 +68105,7 @@
},
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -13695,14 +68137,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 418,
+ "id": 426,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 419,
+ "id": 427,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -13710,22 +68152,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2102,
+ "line": 2116,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2116"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 420,
+ "id": 428,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 421,
+ "id": 429,
"name": "subscription",
"variant": "declaration",
"kind": 1024,
@@ -13733,14 +68175,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2102,
+ "line": 2116,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2116"
}
],
"type": {
"type": "reference",
- "target": 855,
+ "target": 878,
"name": "Subscription",
"package": "@supabase/auth-js"
}
@@ -13749,15 +68191,15 @@
"groups": [
{
"title": "Properties",
- "children": [421]
+ "children": [429]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2102,
+ "line": 2116,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2116"
}
]
}
@@ -13767,15 +68209,15 @@
"groups": [
{
"title": "Properties",
- "children": [419]
+ "children": [427]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2101,
+ "line": 2115,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2115"
}
]
}
@@ -13784,7 +68226,7 @@
]
},
{
- "id": 250,
+ "id": 258,
"name": "reauthenticate",
"variant": "declaration",
"kind": 2048,
@@ -13792,14 +68234,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1299,
+ "line": 1315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1315"
}
],
"signatures": [
{
- "id": 251,
+ "id": 259,
"name": "reauthenticate",
"variant": "signature",
"kind": 4096,
@@ -13815,9 +68257,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1299,
+ "line": 1315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1315"
}
],
"type": {
@@ -13829,7 +68271,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13841,7 +68283,7 @@
]
},
{
- "id": 350,
+ "id": 358,
"name": "refreshSession",
"variant": "declaration",
"kind": 2048,
@@ -13849,14 +68291,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1832,
+ "line": 1846,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1832"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1846"
}
],
"signatures": [
{
- "id": 351,
+ "id": 359,
"name": "refreshSession",
"variant": "signature",
"kind": 4096,
@@ -13872,14 +68314,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1832,
+ "line": 1846,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1832"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1846"
}
],
"parameters": [
{
- "id": 352,
+ "id": 360,
"name": "currentSession",
"variant": "param",
"kind": 32768,
@@ -13897,14 +68339,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 353,
+ "id": 361,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 354,
+ "id": 362,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -13912,9 +68354,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1832,
+ "line": 1846,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1832"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1846"
}
],
"type": {
@@ -13926,15 +68368,15 @@
"groups": [
{
"title": "Properties",
- "children": [354]
+ "children": [362]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1832,
+ "line": 1846,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1832"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1846"
}
]
}
@@ -13950,7 +68392,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -13962,7 +68404,7 @@
]
},
{
- "id": 254,
+ "id": 262,
"name": "resend",
"variant": "declaration",
"kind": 2048,
@@ -13970,14 +68412,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1334,
+ "line": 1350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1350"
}
],
"signatures": [
{
- "id": 255,
+ "id": 263,
"name": "resend",
"variant": "signature",
"kind": 4096,
@@ -13993,21 +68435,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1334,
+ "line": 1350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1334"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1350"
}
],
"parameters": [
{
- "id": 256,
+ "id": 264,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 998,
+ "target": 1021,
"name": "ResendParams",
"package": "@supabase/auth-js"
}
@@ -14022,7 +68464,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 733,
+ "target": 756,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -14034,7 +68476,7 @@
]
},
{
- "id": 425,
+ "id": 433,
"name": "resetPasswordForEmail",
"variant": "declaration",
"kind": 2048,
@@ -14042,14 +68484,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2161,
+ "line": 2175,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2161"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2175"
}
],
"signatures": [
{
- "id": 426,
+ "id": 434,
"name": "resetPasswordForEmail",
"variant": "signature",
"kind": 4096,
@@ -14065,14 +68507,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2161,
+ "line": 2175,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2161"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2175"
}
],
"parameters": [
{
- "id": 427,
+ "id": 435,
"name": "email",
"variant": "param",
"kind": 32768,
@@ -14091,7 +68533,7 @@
}
},
{
- "id": 428,
+ "id": 436,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -14099,14 +68541,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 429,
+ "id": 437,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 431,
+ "id": 439,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -14124,9 +68566,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2165,
+ "line": 2179,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2165"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2179"
}
],
"type": {
@@ -14135,7 +68577,7 @@
}
},
{
- "id": 430,
+ "id": 438,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -14153,9 +68595,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2164,
+ "line": 2178,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2164"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2178"
}
],
"type": {
@@ -14167,15 +68609,15 @@
"groups": [
{
"title": "Properties",
- "children": [431, 430]
+ "children": [439, 438]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2163,
+ "line": 2177,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2163"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2177"
}
]
}
@@ -14196,14 +68638,14 @@
{
"type": "reflection",
"declaration": {
- "id": 432,
+ "id": 440,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 433,
+ "id": 441,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -14211,15 +68653,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2169,
+ "line": 2183,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2169"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2183"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 434,
+ "id": 442,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -14228,7 +68670,7 @@
}
},
{
- "id": 435,
+ "id": 443,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14236,9 +68678,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2170,
+ "line": 2184,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2170"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2184"
}
],
"type": {
@@ -14250,15 +68692,15 @@
"groups": [
{
"title": "Properties",
- "children": [433, 435]
+ "children": [441, 443]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2168,
+ "line": 2182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2182"
}
]
}
@@ -14266,14 +68708,14 @@
{
"type": "reflection",
"declaration": {
- "id": 436,
+ "id": 444,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 437,
+ "id": 445,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -14281,9 +68723,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2186,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2186"
}
],
"type": {
@@ -14292,7 +68734,7 @@
}
},
{
- "id": 438,
+ "id": 446,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -14300,14 +68742,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2186,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2186"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -14316,15 +68758,15 @@
"groups": [
{
"title": "Properties",
- "children": [437, 438]
+ "children": [445, 446]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2172,
+ "line": 2186,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2186"
}
]
}
@@ -14339,7 +68781,7 @@
]
},
{
- "id": 338,
+ "id": 346,
"name": "setSession",
"variant": "declaration",
"kind": 2048,
@@ -14347,14 +68789,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1771,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1771"
}
],
"signatures": [
{
- "id": 339,
+ "id": 347,
"name": "setSession",
"variant": "signature",
"kind": 4096,
@@ -14370,14 +68812,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1771,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1771"
}
],
"parameters": [
{
- "id": 340,
+ "id": 348,
"name": "currentSession",
"variant": "param",
"kind": 32768,
@@ -14393,14 +68835,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 341,
+ "id": 349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 342,
+ "id": 350,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -14408,9 +68850,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1758,
+ "line": 1772,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1758"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1772"
}
],
"type": {
@@ -14419,7 +68861,7 @@
}
},
{
- "id": 343,
+ "id": 351,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -14427,9 +68869,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1759,
+ "line": 1773,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1759"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1773"
}
],
"type": {
@@ -14441,15 +68883,15 @@
"groups": [
{
"title": "Properties",
- "children": [342, 343]
+ "children": [350, 351]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1757,
+ "line": 1771,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1757"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1771"
}
]
}
@@ -14465,7 +68907,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -14477,7 +68919,7 @@
]
},
{
- "id": 170,
+ "id": 178,
"name": "signInAnonymously",
"variant": "declaration",
"kind": 2048,
@@ -14485,14 +68927,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 484,
+ "line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L500"
}
],
"signatures": [
{
- "id": 171,
+ "id": 179,
"name": "signInAnonymously",
"variant": "signature",
"kind": 4096,
@@ -14519,14 +68961,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 484,
+ "line": 500,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L500"
}
],
"parameters": [
{
- "id": 172,
+ "id": 180,
"name": "credentials",
"variant": "param",
"kind": 32768,
@@ -14535,7 +68977,7 @@
},
"type": {
"type": "reference",
- "target": 865,
+ "target": 888,
"name": "SignInAnonymouslyCredentials",
"package": "@supabase/auth-js"
}
@@ -14550,7 +68992,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -14562,7 +69004,7 @@
]
},
{
- "id": 238,
+ "id": 246,
"name": "signInWithIdToken",
"variant": "declaration",
"kind": 2048,
@@ -14570,14 +69012,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1092,
+ "line": 1108,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1092"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1108"
}
],
"signatures": [
{
- "id": 239,
+ "id": 247,
"name": "signInWithIdToken",
"variant": "signature",
"kind": 4096,
@@ -14593,21 +69035,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1092,
+ "line": 1108,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1092"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1108"
}
],
"parameters": [
{
- "id": 240,
+ "id": 248,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 914,
+ "target": 937,
"name": "SignInWithIdTokenCredentials",
"package": "@supabase/auth-js"
}
@@ -14622,7 +69064,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 738,
+ "target": 761,
"name": "AuthTokenResponse",
"package": "@supabase/auth-js"
}
@@ -14634,7 +69076,7 @@
]
},
{
- "id": 179,
+ "id": 187,
"name": "signInWithOAuth",
"variant": "declaration",
"kind": 2048,
@@ -14642,14 +69084,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 667,
+ "line": 683,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L667"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L683"
}
],
"signatures": [
{
- "id": 180,
+ "id": 188,
"name": "signInWithOAuth",
"variant": "signature",
"kind": 4096,
@@ -14665,21 +69107,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 667,
+ "line": 683,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L667"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L683"
}
],
"parameters": [
{
- "id": 181,
+ "id": 189,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 902,
+ "target": 925,
"name": "SignInWithOAuthCredentials",
"package": "@supabase/auth-js"
}
@@ -14694,7 +69136,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 747,
+ "target": 770,
"name": "OAuthResponse",
"package": "@supabase/auth-js"
}
@@ -14706,7 +69148,7 @@
]
},
{
- "id": 241,
+ "id": 249,
"name": "signInWithOtp",
"variant": "declaration",
"kind": 2048,
@@ -14714,14 +69156,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1147,
+ "line": 1163,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1163"
}
],
"signatures": [
{
- "id": 242,
+ "id": 250,
"name": "signInWithOtp",
"variant": "signature",
"kind": 4096,
@@ -14753,21 +69195,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1147,
+ "line": 1163,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1147"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1163"
}
],
"parameters": [
{
- "id": 243,
+ "id": 251,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 884,
+ "target": 907,
"name": "SignInWithPasswordlessCredentials",
"package": "@supabase/auth-js"
}
@@ -14782,7 +69224,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 733,
+ "target": 756,
"name": "AuthOtpResponse",
"package": "@supabase/auth-js"
}
@@ -14794,7 +69236,7 @@
]
},
{
- "id": 176,
+ "id": 184,
"name": "signInWithPassword",
"variant": "declaration",
"kind": 2048,
@@ -14802,14 +69244,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 604,
+ "line": 620,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L620"
}
],
"signatures": [
{
- "id": 177,
+ "id": 185,
"name": "signInWithPassword",
"variant": "signature",
"kind": 4096,
@@ -14825,21 +69267,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 604,
+ "line": 620,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L620"
}
],
"parameters": [
{
- "id": 178,
+ "id": 186,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 879,
+ "target": 902,
"name": "SignInWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -14854,7 +69296,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 742,
+ "target": 765,
"name": "AuthTokenResponsePassword",
"package": "@supabase/auth-js"
}
@@ -14866,7 +69308,7 @@
]
},
{
- "id": 247,
+ "id": 255,
"name": "signInWithSSO",
"variant": "declaration",
"kind": 2048,
@@ -14874,14 +69316,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1277,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1277"
}
],
"signatures": [
{
- "id": 248,
+ "id": 256,
"name": "signInWithSSO",
"variant": "signature",
"kind": 4096,
@@ -14897,21 +69339,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1261,
+ "line": 1277,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1261"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1277"
}
],
"parameters": [
{
- "id": 249,
+ "id": 257,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1012,
+ "target": 1035,
"name": "SignInWithSSO",
"package": "@supabase/auth-js"
}
@@ -14926,7 +69368,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 760,
+ "target": 783,
"name": "SSOResponse",
"package": "@supabase/auth-js"
}
@@ -14938,7 +69380,7 @@
]
},
{
- "id": 185,
+ "id": 193,
"name": "signInWithWeb3",
"variant": "declaration",
"kind": 2048,
@@ -14946,14 +69388,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 694,
+ "line": 710,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L710"
}
],
"signatures": [
{
- "id": 186,
+ "id": 194,
"name": "signInWithWeb3",
"variant": "signature",
"kind": 4096,
@@ -14980,21 +69422,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 694,
+ "line": 710,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L694"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L710"
}
],
"parameters": [
{
- "id": 187,
+ "id": 195,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 975,
+ "target": 998,
"name": "Web3Credentials",
"package": "@supabase/auth-js"
}
@@ -15013,14 +69455,14 @@
{
"type": "reflection",
"declaration": {
- "id": 188,
+ "id": 196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 189,
+ "id": 197,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -15028,22 +69470,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 696,
+ "line": 712,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L712"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 190,
+ "id": 198,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 191,
+ "id": 199,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -15051,20 +69493,20 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 696,
+ "line": 712,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L712"
}
],
"type": {
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 192,
+ "id": 200,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -15072,14 +69514,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 696,
+ "line": 712,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L712"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -15088,22 +69530,22 @@
"groups": [
{
"title": "Properties",
- "children": [191, 192]
+ "children": [199, 200]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 696,
+ "line": 712,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L696"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L712"
}
]
}
}
},
{
- "id": 193,
+ "id": 201,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15111,9 +69553,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 697,
+ "line": 713,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L697"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L713"
}
],
"type": {
@@ -15125,15 +69567,15 @@
"groups": [
{
"title": "Properties",
- "children": [189, 193]
+ "children": [197, 201]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 695,
+ "line": 711,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L711"
}
]
}
@@ -15141,14 +69583,14 @@
{
"type": "reflection",
"declaration": {
- "id": 194,
+ "id": 202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 195,
+ "id": 203,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -15156,22 +69598,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 196,
+ "id": 204,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 197,
+ "id": 205,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -15179,9 +69621,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
],
"type": {
@@ -15190,7 +69632,7 @@
}
},
{
- "id": 198,
+ "id": 206,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -15198,9 +69640,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
],
"type": {
@@ -15212,22 +69654,22 @@
"groups": [
{
"title": "Properties",
- "children": [197, 198]
+ "children": [205, 206]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
]
}
}
},
{
- "id": 199,
+ "id": 207,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15235,14 +69677,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -15251,15 +69693,15 @@
"groups": [
{
"title": "Properties",
- "children": [195, 199]
+ "children": [203, 207]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 699,
+ "line": 715,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L699"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L715"
}
]
}
@@ -15274,7 +69716,7 @@
]
},
{
- "id": 391,
+ "id": 399,
"name": "signOut",
"variant": "declaration",
"kind": 2048,
@@ -15282,14 +69724,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2039,
+ "line": 2053,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2039"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2053"
}
],
"signatures": [
{
- "id": 392,
+ "id": 400,
"name": "signOut",
"variant": "signature",
"kind": 4096,
@@ -15345,21 +69787,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2039,
+ "line": 2053,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2039"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2053"
}
],
"parameters": [
{
- "id": 393,
+ "id": 401,
"name": "options",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1265,
+ "target": 1288,
"name": "SignOut",
"package": "@supabase/auth-js"
},
@@ -15376,14 +69818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 394,
+ "id": 402,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 395,
+ "id": 403,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15391,9 +69833,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2039,
+ "line": 2053,
"character": 67,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2039"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2053"
}
],
"type": {
@@ -15405,7 +69847,7 @@
},
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -15416,15 +69858,15 @@
"groups": [
{
"title": "Properties",
- "children": [395]
+ "children": [403]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2039,
+ "line": 2053,
"character": 65,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2039"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2053"
}
]
}
@@ -15437,7 +69879,7 @@
]
},
{
- "id": 173,
+ "id": 181,
"name": "signUp",
"variant": "declaration",
"kind": 2048,
@@ -15445,14 +69887,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 527,
+ "line": 543,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L543"
}
],
"signatures": [
{
- "id": 174,
+ "id": 182,
"name": "signUp",
"variant": "signature",
"kind": 4096,
@@ -15488,21 +69930,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 527,
+ "line": 543,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L527"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L543"
}
],
"parameters": [
{
- "id": 175,
+ "id": 183,
"name": "credentials",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 871,
+ "target": 894,
"name": "SignUpWithPasswordCredentials",
"package": "@supabase/auth-js"
}
@@ -15517,7 +69959,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -15529,7 +69971,7 @@
]
},
{
- "id": 515,
+ "id": 523,
"name": "startAutoRefresh",
"variant": "declaration",
"kind": 2048,
@@ -15537,14 +69979,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2814,
+ "line": 2828,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2814"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2828"
}
],
"signatures": [
{
- "id": 516,
+ "id": 524,
"name": "startAutoRefresh",
"variant": "signature",
"kind": 4096,
@@ -15559,7 +70001,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClientOptions#autoRefreshToken",
- "target": 684
+ "target": 707
},
{
"kind": "text",
@@ -15575,9 +70017,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2814,
+ "line": 2828,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2814"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2828"
}
],
"type": {
@@ -15599,7 +70041,7 @@
]
},
{
- "id": 517,
+ "id": 525,
"name": "stopAutoRefresh",
"variant": "declaration",
"kind": 2048,
@@ -15607,14 +70049,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2827,
+ "line": 2841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2827"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2841"
}
],
"signatures": [
{
- "id": 518,
+ "id": 526,
"name": "stopAutoRefresh",
"variant": "signature",
"kind": 4096,
@@ -15639,9 +70081,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2827,
+ "line": 2841,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2827"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2841"
}
],
"type": {
@@ -15663,7 +70105,7 @@
]
},
{
- "id": 460,
+ "id": 468,
"name": "unlinkIdentity",
"variant": "declaration",
"kind": 2048,
@@ -15671,14 +70113,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2333,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2347"
}
],
"signatures": [
{
- "id": 461,
+ "id": 469,
"name": "unlinkIdentity",
"variant": "signature",
"kind": 4096,
@@ -15694,21 +70136,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2333,
+ "line": 2347,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2347"
}
],
"parameters": [
{
- "id": 462,
+ "id": 470,
"name": "identity",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 780,
+ "target": 803,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
@@ -15727,14 +70169,14 @@
{
"type": "reflection",
"declaration": {
- "id": 463,
+ "id": 471,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 464,
+ "id": 472,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -15742,15 +70184,15 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2335,
+ "line": 2349,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2335"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2349"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 465,
+ "id": 473,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -15759,7 +70201,7 @@
}
},
{
- "id": 466,
+ "id": 474,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15767,9 +70209,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2336,
+ "line": 2350,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2336"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2350"
}
],
"type": {
@@ -15781,15 +70223,15 @@
"groups": [
{
"title": "Properties",
- "children": [464, 466]
+ "children": [472, 474]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2334,
+ "line": 2348,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2334"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2348"
}
]
}
@@ -15797,14 +70239,14 @@
{
"type": "reflection",
"declaration": {
- "id": 467,
+ "id": 475,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 468,
+ "id": 476,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -15812,9 +70254,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2338,
+ "line": 2352,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2338"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
],
"type": {
@@ -15823,7 +70265,7 @@
}
},
{
- "id": 469,
+ "id": 477,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -15831,14 +70273,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2338,
+ "line": 2352,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2338"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -15847,15 +70289,15 @@
"groups": [
{
"title": "Properties",
- "children": [468, 469]
+ "children": [476, 477]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 2338,
+ "line": 2352,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L2338"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L2352"
}
]
}
@@ -15870,7 +70312,7 @@
]
},
{
- "id": 326,
+ "id": 334,
"name": "updateUser",
"variant": "declaration",
"kind": 2048,
@@ -15878,14 +70320,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1688,
+ "line": 1702,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1688"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1702"
}
],
"signatures": [
{
- "id": 327,
+ "id": 335,
"name": "updateUser",
"variant": "signature",
"kind": 4096,
@@ -15901,27 +70343,27 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1688,
+ "line": 1702,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1688"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1702"
}
],
"parameters": [
{
- "id": 328,
+ "id": 336,
"name": "attributes",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 836,
+ "target": 859,
"name": "UserAttributes",
"package": "@supabase/auth-js"
}
},
{
- "id": 329,
+ "id": 337,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -15929,14 +70371,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 330,
+ "id": 338,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 331,
+ "id": 339,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -15946,9 +70388,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1691,
+ "line": 1705,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1691"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1705"
}
],
"type": {
@@ -15960,15 +70402,15 @@
"groups": [
{
"title": "Properties",
- "children": [331]
+ "children": [339]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1690,
+ "line": 1704,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1690"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1704"
}
]
}
@@ -15985,7 +70427,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 763,
+ "target": 786,
"name": "UserResponse",
"package": "@supabase/auth-js"
}
@@ -15997,7 +70439,7 @@
]
},
{
- "id": 244,
+ "id": 252,
"name": "verifyOtp",
"variant": "declaration",
"kind": 2048,
@@ -16005,14 +70447,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1200,
+ "line": 1216,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1216"
}
],
"signatures": [
{
- "id": 245,
+ "id": 253,
"name": "verifyOtp",
"variant": "signature",
"kind": 4096,
@@ -16028,21 +70470,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 1200,
+ "line": 1216,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L1200"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L1216"
}
],
"parameters": [
{
- "id": 246,
+ "id": 254,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 976,
+ "target": 999,
"name": "VerifyOtpParams",
"package": "@supabase/auth-js"
}
@@ -16057,7 +70499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 724,
+ "target": 747,
"name": "AuthResponse",
"package": "@supabase/auth-js"
}
@@ -16072,38 +70514,38 @@
"groups": [
{
"title": "Constructors",
- "children": [102]
+ "children": [109]
},
{
"title": "Properties",
- "children": [106, 107]
+ "children": [113, 114, 115]
},
{
"title": "Methods",
"children": [
- 182, 614, 257, 320, 439, 166, 449, 401, 250, 350, 254, 425, 338, 170, 238, 179, 241,
- 176, 247, 185, 391, 173, 515, 517, 460, 326, 244
+ 190, 637, 265, 328, 447, 174, 457, 409, 258, 358, 262, 433, 346, 178, 246, 187, 249,
+ 184, 255, 193, 399, 181, 523, 525, 468, 334, 252
]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/GoTrueClient.ts",
- "line": 185,
+ "line": 189,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/GoTrueClient.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/GoTrueClient.ts#L189"
}
]
},
{
- "id": 647,
+ "id": 670,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 648,
+ "id": 671,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -16113,12 +70555,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L26"
}
],
"signatures": [
{
- "id": 649,
+ "id": 672,
"name": "NavigatorLockAcquireTimeoutError",
"variant": "signature",
"kind": 16384,
@@ -16128,12 +70570,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L26"
}
],
"parameters": [
{
- "id": 650,
+ "id": 673,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -16146,7 +70588,7 @@
],
"type": {
"type": "reference",
- "target": 647,
+ "target": 670,
"name": "NavigatorLockAcquireTimeoutError",
"package": "@supabase/auth-js"
},
@@ -16164,7 +70606,7 @@
}
},
{
- "id": 651,
+ "id": 674,
"name": "isAcquireTimeout",
"variant": "declaration",
"kind": 1024,
@@ -16178,7 +70620,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 24,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L24"
}
],
"type": {
@@ -16196,11 +70638,11 @@
"groups": [
{
"title": "Constructors",
- "children": [648]
+ "children": [671]
},
{
"title": "Properties",
- "children": [651]
+ "children": [674]
}
],
"sources": [
@@ -16208,7 +70650,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 31,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L31"
}
],
"extendedTypes": [
@@ -16224,14 +70666,14 @@
]
},
{
- "id": 842,
+ "id": 865,
"name": "AdminUserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 844,
+ "id": 867,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16267,7 +70709,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 438,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L438"
}
],
"type": {
@@ -16276,7 +70718,7 @@
}
},
{
- "id": 847,
+ "id": 870,
"name": "ban_duration",
"variant": "declaration",
"kind": 1024,
@@ -16296,7 +70738,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 464,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L464"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L464"
}
],
"type": {
@@ -16305,7 +70747,7 @@
}
},
{
- "id": 852,
+ "id": 876,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -16326,7 +70768,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 389,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L389"
}
],
"type": {
@@ -16340,7 +70782,7 @@
}
},
{
- "id": 845,
+ "id": 868,
"name": "email_confirm",
"variant": "declaration",
"kind": 1024,
@@ -16360,7 +70802,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L445"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L445"
}
],
"type": {
@@ -16369,7 +70811,7 @@
}
},
{
- "id": 850,
+ "id": 873,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -16405,7 +70847,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 489,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L489"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L489"
}
],
"type": {
@@ -16414,7 +70856,7 @@
}
},
{
- "id": 851,
+ "id": 874,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -16435,7 +70877,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -16449,7 +70891,7 @@
}
},
{
- "id": 854,
+ "id": 877,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -16470,7 +70912,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 399,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L399"
}
],
"type": {
@@ -16484,7 +70926,7 @@
}
},
{
- "id": 849,
+ "id": 872,
"name": "password_hash",
"variant": "declaration",
"kind": 1024,
@@ -16512,7 +70954,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 482,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L482"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L482"
}
],
"type": {
@@ -16521,7 +70963,7 @@
}
},
{
- "id": 853,
+ "id": 875,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -16542,7 +70984,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 394,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L394"
}
],
"type": {
@@ -16556,7 +70998,7 @@
}
},
{
- "id": 846,
+ "id": 869,
"name": "phone_confirm",
"variant": "declaration",
"kind": 1024,
@@ -16576,7 +71018,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 452,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L452"
}
],
"type": {
@@ -16585,7 +71027,7 @@
}
},
{
- "id": 848,
+ "id": 871,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -16637,7 +71079,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 473,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L473"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L473"
}
],
"type": {
@@ -16646,7 +71088,7 @@
}
},
{
- "id": 843,
+ "id": 866,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -16682,7 +71124,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 428,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L428"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L428"
}
],
"type": {
@@ -16694,7 +71136,7 @@
"groups": [
{
"title": "Properties",
- "children": [844, 847, 852, 845, 850, 851, 854, 849, 853, 846, 848, 843]
+ "children": [867, 870, 876, 868, 873, 874, 877, 872, 875, 869, 871, 866]
}
],
"sources": [
@@ -16702,7 +71144,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 417,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L417"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L417"
}
],
"extendedTypes": [
@@ -16715,7 +71157,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 836,
+ "target": 859,
"name": "UserAttributes",
"package": "@supabase/auth-js"
},
@@ -16730,7 +71172,7 @@
]
},
{
- "id": 777,
+ "id": 800,
"name": "AMREntry",
"variant": "declaration",
"kind": 256,
@@ -16750,7 +71192,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1224
+ "target": 1247
},
{
"kind": "text",
@@ -16762,7 +71204,7 @@
},
"children": [
{
- "id": 778,
+ "id": 801,
"name": "method",
"variant": "declaration",
"kind": 1024,
@@ -16780,18 +71222,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L281"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L281"
}
],
"type": {
"type": "reference",
- "target": 775,
+ "target": 798,
"name": "AMRMethod",
"package": "@supabase/auth-js"
}
},
{
- "id": 779,
+ "id": 802,
"name": "timestamp",
"variant": "declaration",
"kind": 1024,
@@ -16809,7 +71251,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 287,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L287"
}
],
"type": {
@@ -16821,7 +71263,7 @@
"groups": [
{
"title": "Properties",
- "children": [778, 779]
+ "children": [801, 802]
}
],
"sources": [
@@ -16829,19 +71271,445 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 279,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L279"
}
]
},
{
- "id": 1047,
+ "id": 1416,
+ "name": "AuthOAuthServerApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth 2.1 authorization server user-facing methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThese methods are used to implement the consent page."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1420,
+ "name": "approveAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1703,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1703"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1421,
+ "name": "approveAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Approves an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1703,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1703"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1422,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to approve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1423,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1424,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1425,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1705,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1705"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1425]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1705,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1705"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1413,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1426,
+ "name": "denyAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1716,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1716"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1427,
+ "name": "denyAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Denies an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1716,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1716"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1428,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to deny"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1429,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1430,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1431,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1718,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1718"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1431]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1718,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1718"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1413,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1417,
+ "name": "getAuthorizationDetails",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1693,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1693"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1418,
+ "name": "getAuthorizationDetails",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves details about an OAuth authorization request.\nUsed to display consent information to the user.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis method returns authorization details including client info, scopes, and user information.\nIf the response includes a redirect_uri, it means consent was already given - the caller\nshould handle the redirect manually if needed."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Authorization details including client info and requested scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1693,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1693"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1419,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID from the authorization request"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1412,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1420, 1426, 1417]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1680,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1680"
+ }
+ ]
+ },
+ {
+ "id": 1070,
"name": "GenerateLinkOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1048,
+ "id": 1071,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -16877,7 +71745,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 829,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L829"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L829"
}
],
"type": {
@@ -16886,7 +71754,7 @@
}
},
{
- "id": 1049,
+ "id": 1072,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -16906,7 +71774,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 831,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L831"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L831"
}
],
"type": {
@@ -16918,7 +71786,7 @@
"groups": [
{
"title": "Properties",
- "children": [1048, 1049]
+ "children": [1071, 1072]
}
],
"sources": [
@@ -16926,12 +71794,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 823,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L823"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L823"
}
]
},
{
- "id": 1240,
+ "id": 1263,
"name": "GoTrueAdminMFAApi",
"variant": "declaration",
"kind": 256,
@@ -16952,7 +71820,7 @@
},
"children": [
{
- "id": 1244,
+ "id": 1267,
"name": "deleteFactor",
"variant": "declaration",
"kind": 2048,
@@ -16962,12 +71830,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1272"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1272"
}
],
"signatures": [
{
- "id": 1245,
+ "id": 1268,
"name": "deleteFactor",
"variant": "signature",
"kind": 4096,
@@ -16987,7 +71855,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#unenroll",
- "target": 1213
+ "target": 1236
}
]
},
@@ -17002,19 +71870,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1272"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1272"
}
],
"parameters": [
{
- "id": 1246,
+ "id": 1269,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1230,
+ "target": 1253,
"name": "AuthMFAAdminDeleteFactorParams",
"package": "@supabase/auth-js"
}
@@ -17029,7 +71897,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1227,
+ "target": 1250,
"name": "AuthMFAAdminDeleteFactorResponse",
"package": "@supabase/auth-js"
}
@@ -17041,7 +71909,7 @@
]
},
{
- "id": 1241,
+ "id": 1264,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -17051,12 +71919,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1262,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1262"
}
],
"signatures": [
{
- "id": 1242,
+ "id": 1265,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -17074,19 +71942,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1262,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1262"
}
],
"parameters": [
{
- "id": 1243,
+ "id": 1266,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1237,
+ "target": 1260,
"name": "AuthMFAAdminListFactorsParams",
"package": "@supabase/auth-js"
}
@@ -17101,7 +71969,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1234,
+ "target": 1257,
"name": "AuthMFAAdminListFactorsResponse",
"package": "@supabase/auth-js"
}
@@ -17116,7 +71984,7 @@
"groups": [
{
"title": "Methods",
- "children": [1244, 1241]
+ "children": [1267, 1264]
}
],
"sources": [
@@ -17124,12 +71992,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1257,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1257"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1257"
}
]
},
{
- "id": 1342,
+ "id": 1373,
"name": "GoTrueAdminOAuthApi",
"variant": "declaration",
"kind": 256,
@@ -17144,7 +72012,7 @@
},
"children": [
{
- "id": 1346,
+ "id": 1377,
"name": "createClient",
"variant": "declaration",
"kind": 2048,
@@ -17152,14 +72020,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1567,
+ "line": 1587,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"signatures": [
{
- "id": 1347,
+ "id": 1378,
"name": "createClient",
"variant": "signature",
"kind": 4096,
@@ -17183,21 +72051,21 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1567,
+ "line": 1587,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1567"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1587"
}
],
"parameters": [
{
- "id": 1348,
+ "id": 1379,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1321,
+ "target": 1345,
"name": "CreateOAuthClientParams",
"package": "@supabase/auth-js"
}
@@ -17212,7 +72080,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1329,
+ "target": 1360,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -17224,7 +72092,7 @@
]
},
{
- "id": 1352,
+ "id": 1387,
"name": "deleteClient",
"variant": "declaration",
"kind": 2048,
@@ -17232,14 +72100,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1583,
+ "line": 1611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1611"
}
],
"signatures": [
{
- "id": 1353,
+ "id": 1388,
"name": "deleteClient",
"variant": "signature",
"kind": 4096,
@@ -17263,14 +72131,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1583,
+ "line": 1611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1583"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1611"
}
],
"parameters": [
{
- "id": 1354,
+ "id": 1389,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -17289,10 +72157,79 @@
},
"typeArguments": [
{
- "type": "reference",
- "target": 1329,
- "name": "OAuthClientResponse",
- "package": "@supabase/auth-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 1390,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1391,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1611,
+ "character": 44,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1611"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1392,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1611,
+ "character": 56,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1611"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1450,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1391, 1392]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1611,
+ "character": 42,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1611"
+ }
+ ]
+ }
}
],
"name": "Promise",
@@ -17302,7 +72239,7 @@
]
},
{
- "id": 1349,
+ "id": 1380,
"name": "getClient",
"variant": "declaration",
"kind": 2048,
@@ -17310,14 +72247,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1575,
+ "line": 1595,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1595"
}
],
"signatures": [
{
- "id": 1350,
+ "id": 1381,
"name": "getClient",
"variant": "signature",
"kind": 4096,
@@ -17341,14 +72278,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1575,
+ "line": 1595,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1575"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1595"
}
],
"parameters": [
{
- "id": 1351,
+ "id": 1382,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -17368,7 +72305,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1329,
+ "target": 1360,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -17380,7 +72317,7 @@
]
},
{
- "id": 1343,
+ "id": 1374,
"name": "listClients",
"variant": "declaration",
"kind": 2048,
@@ -17388,14 +72325,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1559,
+ "line": 1579,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1579"
}
],
"signatures": [
{
- "id": 1344,
+ "id": 1375,
"name": "listClients",
"variant": "signature",
"kind": 4096,
@@ -17419,14 +72356,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1559,
+ "line": 1579,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1559"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1579"
}
],
"parameters": [
{
- "id": 1345,
+ "id": 1376,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -17435,7 +72372,7 @@
},
"type": {
"type": "reference",
- "target": 1261,
+ "target": 1284,
"name": "PageParams",
"package": "@supabase/auth-js"
}
@@ -17450,7 +72387,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1330,
+ "target": 1361,
"name": "OAuthClientListResponse",
"package": "@supabase/auth-js"
}
@@ -17462,7 +72399,7 @@
]
},
{
- "id": 1355,
+ "id": 1393,
"name": "regenerateClientSecret",
"variant": "declaration",
"kind": 2048,
@@ -17470,14 +72407,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1591,
+ "line": 1619,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1619"
}
],
"signatures": [
{
- "id": 1356,
+ "id": 1394,
"name": "regenerateClientSecret",
"variant": "signature",
"kind": 4096,
@@ -17501,14 +72438,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1591,
+ "line": 1619,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1591"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1619"
}
],
"parameters": [
{
- "id": 1357,
+ "id": 1395,
"name": "clientId",
"variant": "param",
"kind": 32768,
@@ -17528,7 +72465,98 @@
"typeArguments": [
{
"type": "reference",
- "target": 1329,
+ "target": 1360,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1383,
+ "name": "updateClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1603,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1603"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1384,
+ "name": "updateClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates an existing OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1603,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1603"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1385,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1386,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1353,
+ "name": "UpdateOAuthClientParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1360,
"name": "OAuthClientResponse",
"package": "@supabase/auth-js"
}
@@ -17543,20 +72571,20 @@
"groups": [
{
"title": "Methods",
- "children": [1346, 1352, 1349, 1343, 1355]
+ "children": [1377, 1387, 1380, 1374, 1393, 1383]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1552,
+ "line": 1572,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1552"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1572"
}
]
},
{
- "id": 1110,
+ "id": 1133,
"name": "GoTrueMFAApi",
"variant": "declaration",
"kind": 256,
@@ -17571,7 +72599,7 @@
},
"children": [
{
- "id": 1226,
+ "id": 1249,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -17581,7 +72609,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1215"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1215"
}
],
"type": {
@@ -17595,7 +72623,7 @@
}
},
{
- "id": 1131,
+ "id": 1154,
"name": "challenge",
"variant": "declaration",
"kind": 2048,
@@ -17605,30 +72633,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1163"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1163"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1164"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1164"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1165"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1165"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1166,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1166"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1166"
}
],
"signatures": [
{
- "id": 1132,
+ "id": 1155,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -17646,12 +72674,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1163"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1163"
}
],
"parameters": [
{
- "id": 1133,
+ "id": 1156,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -17659,14 +72687,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1134,
+ "id": 1157,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1135,
+ "id": 1158,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -17684,7 +72712,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 937,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L937"
}
],
"type": {
@@ -17696,7 +72724,7 @@
"groups": [
{
"title": "Properties",
- "children": [1135]
+ "children": [1158]
}
],
"sources": [
@@ -17704,7 +72732,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -17724,14 +72752,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1136,
+ "id": 1159,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1137,
+ "id": 1160,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17741,7 +72769,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L142"
}
],
"type": {
@@ -17750,7 +72778,7 @@
}
},
{
- "id": 1138,
+ "id": 1161,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -17760,12 +72788,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -17774,7 +72802,7 @@
"groups": [
{
"title": "Properties",
- "children": [1137, 1138]
+ "children": [1160, 1161]
}
],
"sources": [
@@ -17782,7 +72810,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -17790,14 +72818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1139,
+ "id": 1162,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1140,
+ "id": 1163,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -17807,20 +72835,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 138,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L138"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1141,
+ "id": 1164,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1144,
+ "id": 1167,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -17838,7 +72866,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1033,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1033"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -17847,7 +72875,7 @@
}
},
{
- "id": 1142,
+ "id": 1165,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -17865,7 +72893,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1027,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1027"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1027"
}
],
"type": {
@@ -17874,7 +72902,7 @@
}
},
{
- "id": 1143,
+ "id": 1166,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -17892,7 +72920,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1030,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1030"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"type": {
@@ -17904,7 +72932,7 @@
"groups": [
{
"title": "Properties",
- "children": [1144, 1142, 1143]
+ "children": [1167, 1165, 1166]
}
],
"sources": [
@@ -17912,14 +72940,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
}
},
{
- "id": 1145,
+ "id": 1168,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -17929,7 +72957,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -17941,7 +72969,7 @@
"groups": [
{
"title": "Properties",
- "children": [1140, 1145]
+ "children": [1163, 1168]
}
],
"sources": [
@@ -17949,7 +72977,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -17962,7 +72990,7 @@
}
},
{
- "id": 1146,
+ "id": 1169,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -17972,12 +73000,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1164"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1164"
}
],
"parameters": [
{
- "id": 1147,
+ "id": 1170,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -17985,14 +73013,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1148,
+ "id": 1171,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1150,
+ "id": 1173,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -18010,7 +73038,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 947,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L947"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L947"
}
],
"type": {
@@ -18028,7 +73056,7 @@
}
},
{
- "id": 1149,
+ "id": 1172,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -18046,7 +73074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 937,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L937"
}
],
"type": {
@@ -18058,7 +73086,7 @@
"groups": [
{
"title": "Properties",
- "children": [1150, 1149]
+ "children": [1173, 1172]
}
],
"sources": [
@@ -18066,7 +73094,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18086,14 +73114,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1151,
+ "id": 1174,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1152,
+ "id": 1175,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -18103,7 +73131,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L142"
}
],
"type": {
@@ -18112,7 +73140,7 @@
}
},
{
- "id": 1153,
+ "id": 1176,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -18122,12 +73150,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -18136,7 +73164,7 @@
"groups": [
{
"title": "Properties",
- "children": [1152, 1153]
+ "children": [1175, 1176]
}
],
"sources": [
@@ -18144,7 +73172,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18152,14 +73180,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1154,
+ "id": 1177,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1155,
+ "id": 1178,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -18169,20 +73197,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 138,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L138"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1156,
+ "id": 1179,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1159,
+ "id": 1182,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -18200,7 +73228,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1033,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1033"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -18209,7 +73237,7 @@
}
},
{
- "id": 1157,
+ "id": 1180,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18227,7 +73255,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1027,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1027"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1027"
}
],
"type": {
@@ -18236,7 +73264,7 @@
}
},
{
- "id": 1158,
+ "id": 1181,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18254,7 +73282,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1030,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1030"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"type": {
@@ -18266,7 +73294,7 @@
"groups": [
{
"title": "Properties",
- "children": [1159, 1157, 1158]
+ "children": [1182, 1180, 1181]
}
],
"sources": [
@@ -18274,14 +73302,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
}
},
{
- "id": 1160,
+ "id": 1183,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -18291,7 +73319,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -18303,7 +73331,7 @@
"groups": [
{
"title": "Properties",
- "children": [1155, 1160]
+ "children": [1178, 1183]
}
],
"sources": [
@@ -18311,7 +73339,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18324,7 +73352,7 @@
}
},
{
- "id": 1161,
+ "id": 1184,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -18334,12 +73362,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1165"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1165"
}
],
"parameters": [
{
- "id": 1162,
+ "id": 1185,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -18347,14 +73375,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1163,
+ "id": 1186,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1164,
+ "id": 1187,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -18372,7 +73400,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 937,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L937"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L937"
}
],
"type": {
@@ -18381,7 +73409,7 @@
}
},
{
- "id": 1165,
+ "id": 1188,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -18391,20 +73419,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 956,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L956"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1166,
+ "id": 1189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1167,
+ "id": 1190,
"name": "rpId",
"variant": "declaration",
"kind": 1024,
@@ -18422,7 +73450,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 958,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L958"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L958"
}
],
"type": {
@@ -18431,7 +73459,7 @@
}
},
{
- "id": 1168,
+ "id": 1191,
"name": "rpOrigins",
"variant": "declaration",
"kind": 1024,
@@ -18451,7 +73479,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 960,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L960"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L960"
}
],
"type": {
@@ -18466,7 +73494,7 @@
"groups": [
{
"title": "Properties",
- "children": [1167, 1168]
+ "children": [1190, 1191]
}
],
"sources": [
@@ -18474,7 +73502,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 956,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L956"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L956"
}
]
}
@@ -18484,7 +73512,7 @@
"groups": [
{
"title": "Properties",
- "children": [1164, 1165]
+ "children": [1187, 1188]
}
],
"sources": [
@@ -18492,7 +73520,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18512,14 +73540,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1169,
+ "id": 1192,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1170,
+ "id": 1193,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -18529,7 +73557,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L142"
}
],
"type": {
@@ -18538,7 +73566,7 @@
}
},
{
- "id": 1171,
+ "id": 1194,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -18548,12 +73576,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -18562,7 +73590,7 @@
"groups": [
{
"title": "Properties",
- "children": [1170, 1171]
+ "children": [1193, 1194]
}
],
"sources": [
@@ -18570,7 +73598,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18578,14 +73606,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1172,
+ "id": 1195,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1173,
+ "id": 1196,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -18595,20 +73623,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 138,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L138"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1174,
+ "id": 1197,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1177,
+ "id": 1200,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -18626,7 +73654,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1033,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1033"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1033"
}
],
"type": {
@@ -18635,7 +73663,7 @@
}
},
{
- "id": 1175,
+ "id": 1198,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -18653,7 +73681,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1027,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1027"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1027"
}
],
"type": {
@@ -18662,7 +73690,7 @@
}
},
{
- "id": 1176,
+ "id": 1199,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18680,7 +73708,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1030,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1030"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1030"
}
],
"type": {
@@ -18689,7 +73717,7 @@
}
},
{
- "id": 1178,
+ "id": 1201,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -18699,7 +73727,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1053,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1053"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1053"
}
],
"type": {
@@ -18708,14 +73736,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1179,
+ "id": 1202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1181,
+ "id": 1204,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -18725,20 +73753,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1182,
+ "id": 1205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1183,
+ "id": 1206,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -18748,7 +73776,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1056"
}
],
"type": {
@@ -18765,7 +73793,7 @@
"groups": [
{
"title": "Properties",
- "children": [1183]
+ "children": [1206]
}
],
"sources": [
@@ -18773,14 +73801,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1056,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1056"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1056"
}
]
}
}
},
{
- "id": 1180,
+ "id": 1203,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18790,7 +73818,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1055,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1055"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1055"
}
],
"type": {
@@ -18802,7 +73830,7 @@
"groups": [
{
"title": "Properties",
- "children": [1181, 1180]
+ "children": [1204, 1203]
}
],
"sources": [
@@ -18810,7 +73838,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1054,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1054"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1054"
}
]
}
@@ -18818,14 +73846,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1184,
+ "id": 1207,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1186,
+ "id": 1209,
"name": "credential_options",
"variant": "declaration",
"kind": 1024,
@@ -18835,20 +73863,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1060,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1060"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1187,
+ "id": 1210,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1188,
+ "id": 1211,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -18858,7 +73886,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1060,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1060"
}
],
"type": {
@@ -18875,7 +73903,7 @@
"groups": [
{
"title": "Properties",
- "children": [1188]
+ "children": [1211]
}
],
"sources": [
@@ -18883,14 +73911,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1060,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1060"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1060"
}
]
}
}
},
{
- "id": 1185,
+ "id": 1208,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -18900,7 +73928,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1059,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1059"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1059"
}
],
"type": {
@@ -18912,7 +73940,7 @@
"groups": [
{
"title": "Properties",
- "children": [1186, 1185]
+ "children": [1209, 1208]
}
],
"sources": [
@@ -18920,7 +73948,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1058,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1058"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1058"
}
]
}
@@ -18932,7 +73960,7 @@
"groups": [
{
"title": "Properties",
- "children": [1177, 1175, 1176, 1178]
+ "children": [1200, 1198, 1199, 1201]
}
],
"sources": [
@@ -18940,14 +73968,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
}
},
{
- "id": 1189,
+ "id": 1212,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -18957,7 +73985,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -18969,7 +73997,7 @@
"groups": [
{
"title": "Properties",
- "children": [1173, 1189]
+ "children": [1196, 1212]
}
],
"sources": [
@@ -18977,7 +74005,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -18990,7 +74018,7 @@
}
},
{
- "id": 1190,
+ "id": 1213,
"name": "challenge",
"variant": "signature",
"kind": 4096,
@@ -19000,19 +74028,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1166,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1166"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1166"
}
],
"parameters": [
{
- "id": 1191,
+ "id": 1214,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1080,
+ "target": 1103,
"name": "MFAChallengeParams",
"package": "@supabase/auth-js"
}
@@ -19027,7 +74055,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1099,
+ "target": 1122,
"name": "AuthMFAChallengeResponse",
"package": "@supabase/auth-js"
}
@@ -19039,7 +74067,7 @@
]
},
{
- "id": 1216,
+ "id": 1239,
"name": "challengeAndVerify",
"variant": "declaration",
"kind": 2048,
@@ -19049,12 +74077,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1187"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1187"
}
],
"signatures": [
{
- "id": 1217,
+ "id": 1240,
"name": "challengeAndVerify",
"variant": "signature",
"kind": 4096,
@@ -19072,12 +74100,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1187"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1187"
}
],
"parameters": [
{
- "id": 1218,
+ "id": 1241,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -19085,14 +74113,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1219,
+ "id": 1242,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1221,
+ "id": 1244,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -19110,7 +74138,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 891,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L891"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
@@ -19119,7 +74147,7 @@
}
},
{
- "id": 1220,
+ "id": 1243,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -19137,7 +74165,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 884,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L884"
}
],
"type": {
@@ -19149,7 +74177,7 @@
"groups": [
{
"title": "Properties",
- "children": [1221, 1220]
+ "children": [1244, 1243]
}
],
"sources": [
@@ -19157,7 +74185,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -19173,7 +74201,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1112,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -19185,7 +74213,7 @@
]
},
{
- "id": 1111,
+ "id": 1134,
"name": "enroll",
"variant": "declaration",
"kind": 2048,
@@ -19195,30 +74223,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1154,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1154"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1154"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1155"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1156,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1156"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1156"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1157"
}
],
"signatures": [
{
- "id": 1112,
+ "id": 1135,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -19252,12 +74280,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1154,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1154"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1154"
}
],
"parameters": [
{
- "id": 1113,
+ "id": 1136,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -19265,14 +74293,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1114,
+ "id": 1137,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1115,
+ "id": 1138,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -19290,7 +74318,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -19299,7 +74327,7 @@
}
},
{
- "id": 1116,
+ "id": 1139,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -19319,7 +74347,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1333"
}
],
"type": {
@@ -19328,7 +74356,7 @@
}
},
{
- "id": 1117,
+ "id": 1140,
"name": "issuer",
"variant": "declaration",
"kind": 1024,
@@ -19348,7 +74376,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1338,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1338"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1338"
}
],
"type": {
@@ -19360,7 +74388,7 @@
"groups": [
{
"title": "Properties",
- "children": [1115, 1116, 1117]
+ "children": [1138, 1139, 1140]
}
],
"sources": [
@@ -19368,7 +74396,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -19384,7 +74412,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1271,
+ "target": 1294,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
}
@@ -19394,7 +74422,7 @@
}
},
{
- "id": 1118,
+ "id": 1141,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -19404,12 +74432,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1155"
}
],
"parameters": [
{
- "id": 1119,
+ "id": 1142,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -19417,14 +74445,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1120,
+ "id": 1143,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1121,
+ "id": 1144,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -19442,7 +74470,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -19451,7 +74479,7 @@
}
},
{
- "id": 1122,
+ "id": 1145,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -19471,7 +74499,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1333"
}
],
"type": {
@@ -19480,7 +74508,7 @@
}
},
{
- "id": 1123,
+ "id": 1146,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -19498,7 +74526,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1345,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1345"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1345"
}
],
"type": {
@@ -19510,7 +74538,7 @@
"groups": [
{
"title": "Properties",
- "children": [1121, 1122, 1123]
+ "children": [1144, 1145, 1146]
}
],
"sources": [
@@ -19518,7 +74546,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -19534,7 +74562,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1272,
+ "target": 1295,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
}
@@ -19544,7 +74572,7 @@
}
},
{
- "id": 1124,
+ "id": 1147,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -19554,12 +74582,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1156,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1156"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1156"
}
],
"parameters": [
{
- "id": 1125,
+ "id": 1148,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -19567,14 +74595,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1126,
+ "id": 1149,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1127,
+ "id": 1150,
"name": "factorType",
"variant": "declaration",
"kind": 1024,
@@ -19592,7 +74620,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1331,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1331"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1331"
}
],
"type": {
@@ -19601,7 +74629,7 @@
}
},
{
- "id": 1128,
+ "id": 1151,
"name": "friendlyName",
"variant": "declaration",
"kind": 1024,
@@ -19621,7 +74649,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1333"
}
],
"type": {
@@ -19633,7 +74661,7 @@
"groups": [
{
"title": "Properties",
- "children": [1127, 1128]
+ "children": [1150, 1151]
}
],
"sources": [
@@ -19641,7 +74669,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -19657,7 +74685,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1273,
+ "target": 1296,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -19667,7 +74695,7 @@
}
},
{
- "id": 1129,
+ "id": 1152,
"name": "enroll",
"variant": "signature",
"kind": 4096,
@@ -19677,19 +74705,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1157,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1157"
}
],
"parameters": [
{
- "id": 1130,
+ "id": 1153,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1063,
+ "target": 1086,
"name": "MFAEnrollParams",
"package": "@supabase/auth-js"
}
@@ -19704,7 +74732,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1090,
+ "target": 1113,
"name": "AuthMFAEnrollResponse",
"package": "@supabase/auth-js"
}
@@ -19716,7 +74744,7 @@
]
},
{
- "id": 1224,
+ "id": 1247,
"name": "getAuthenticatorAssuranceLevel",
"variant": "declaration",
"kind": 2048,
@@ -19726,12 +74754,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1212,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1212"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1212"
}
],
"signatures": [
{
- "id": 1225,
+ "id": 1248,
"name": "getAuthenticatorAssuranceLevel",
"variant": "signature",
"kind": 4096,
@@ -19773,7 +74801,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1212,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1212"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1212"
}
],
"type": {
@@ -19785,7 +74813,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1105,
+ "target": 1128,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"package": "@supabase/auth-js"
}
@@ -19797,7 +74825,7 @@
]
},
{
- "id": 1222,
+ "id": 1245,
"name": "listFactors",
"variant": "declaration",
"kind": 2048,
@@ -19807,12 +74835,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1197"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1197"
}
],
"signatures": [
{
- "id": 1223,
+ "id": 1246,
"name": "listFactors",
"variant": "signature",
"kind": 4096,
@@ -19836,7 +74864,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1111
+ "target": 1134
},
{
"kind": "text",
@@ -19850,7 +74878,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
- "target": 1224
+ "target": 1247
},
{
"kind": "text",
@@ -19864,7 +74892,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClient#getUser",
- "target": 320
+ "target": 328
},
{
"kind": "text",
@@ -19879,7 +74907,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1197"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1197"
}
],
"type": {
@@ -19891,7 +74919,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1100,
+ "target": 1123,
"typeArguments": [
{
"type": "typeOperator",
@@ -19926,7 +74954,7 @@
]
},
{
- "id": 1213,
+ "id": 1236,
"name": "unenroll",
"variant": "declaration",
"kind": 2048,
@@ -19936,12 +74964,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1181"
}
],
"signatures": [
{
- "id": 1214,
+ "id": 1237,
"name": "unenroll",
"variant": "signature",
"kind": 4096,
@@ -19975,19 +75003,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1181"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1181"
}
],
"parameters": [
{
- "id": 1215,
+ "id": 1238,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1064,
+ "target": 1087,
"name": "MFAUnenrollParams",
"package": "@supabase/auth-js"
}
@@ -20002,7 +75030,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1091,
+ "target": 1114,
"name": "AuthMFAUnenrollResponse",
"package": "@supabase/auth-js"
}
@@ -20014,7 +75042,7 @@
]
},
{
- "id": 1192,
+ "id": 1215,
"name": "verify",
"variant": "declaration",
"kind": 2048,
@@ -20024,30 +75052,30 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1172,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1172"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1173"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1173"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1174"
},
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1175"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1175"
}
],
"signatures": [
{
- "id": 1193,
+ "id": 1216,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -20065,12 +75093,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1172,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1172"
}
],
"parameters": [
{
- "id": 1194,
+ "id": 1217,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20078,14 +75106,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1195,
+ "id": 1218,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1197,
+ "id": 1220,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -20103,7 +75131,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -20112,7 +75140,7 @@
}
},
{
- "id": 1198,
+ "id": 1221,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -20130,7 +75158,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 891,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L891"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
@@ -20139,7 +75167,7 @@
}
},
{
- "id": 1196,
+ "id": 1219,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -20157,7 +75185,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 884,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L884"
}
],
"type": {
@@ -20169,7 +75197,7 @@
"groups": [
{
"title": "Properties",
- "children": [1197, 1198, 1196]
+ "children": [1220, 1221, 1219]
}
],
"sources": [
@@ -20177,7 +75205,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -20193,7 +75221,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1112,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -20203,7 +75231,7 @@
}
},
{
- "id": 1199,
+ "id": 1222,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -20213,12 +75241,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1173"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1173"
}
],
"parameters": [
{
- "id": 1200,
+ "id": 1223,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20226,14 +75254,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1201,
+ "id": 1224,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1203,
+ "id": 1226,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -20251,7 +75279,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -20260,7 +75288,7 @@
}
},
{
- "id": 1204,
+ "id": 1227,
"name": "code",
"variant": "declaration",
"kind": 1024,
@@ -20278,7 +75306,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 891,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L891"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L891"
}
],
"type": {
@@ -20287,7 +75315,7 @@
}
},
{
- "id": 1202,
+ "id": 1225,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -20305,7 +75333,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 884,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L884"
}
],
"type": {
@@ -20317,7 +75345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1203, 1204, 1202]
+ "children": [1226, 1227, 1225]
}
],
"sources": [
@@ -20325,7 +75353,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -20341,7 +75369,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1112,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -20351,7 +75379,7 @@
}
},
{
- "id": 1205,
+ "id": 1228,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -20361,12 +75389,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1174"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1174"
}
],
"parameters": [
{
- "id": 1206,
+ "id": 1229,
"name": "params",
"variant": "param",
"kind": 32768,
@@ -20374,14 +75402,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1207,
+ "id": 1230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1209,
+ "id": 1232,
"name": "challengeId",
"variant": "declaration",
"kind": 1024,
@@ -20399,7 +75427,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 886,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L886"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L886"
}
],
"type": {
@@ -20408,7 +75436,7 @@
}
},
{
- "id": 1208,
+ "id": 1231,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -20426,7 +75454,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 884,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L884"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L884"
}
],
"type": {
@@ -20435,7 +75463,7 @@
}
},
{
- "id": 1210,
+ "id": 1233,
"name": "webauthn",
"variant": "declaration",
"kind": 1024,
@@ -20445,7 +75473,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 921,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L921"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L921"
}
],
"type": {
@@ -20491,7 +75519,7 @@
"groups": [
{
"title": "Properties",
- "children": [1209, 1208, 1210]
+ "children": [1232, 1231, 1233]
}
],
"sources": [
@@ -20499,7 +75527,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
]
}
@@ -20515,7 +75543,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1112,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -20525,7 +75553,7 @@
}
},
{
- "id": 1211,
+ "id": 1234,
"name": "verify",
"variant": "signature",
"kind": 4096,
@@ -20535,19 +75563,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1175"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1175"
}
],
"parameters": [
{
- "id": 1212,
+ "id": 1235,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 1075,
+ "target": 1098,
"name": "MFAVerifyParams",
"package": "@supabase/auth-js"
}
@@ -20562,7 +75590,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1089,
+ "target": 1112,
"name": "AuthMFAVerifyResponse",
"package": "@supabase/auth-js"
}
@@ -20577,11 +75605,11 @@
"groups": [
{
"title": "Properties",
- "children": [1226]
+ "children": [1249]
},
{
"title": "Methods",
- "children": [1131, 1216, 1111, 1224, 1222, 1213, 1192]
+ "children": [1154, 1239, 1134, 1247, 1245, 1236, 1215]
}
],
"sources": [
@@ -20589,19 +75617,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1144,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1144"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1144"
}
]
},
{
- "id": 1293,
+ "id": 1316,
"name": "JWK",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 1296,
+ "id": 1319,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -20613,7 +75641,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1444,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1444"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1444"
}
],
"type": {
@@ -20622,7 +75650,7 @@
}
},
{
- "id": 1295,
+ "id": 1318,
"name": "key_ops",
"variant": "declaration",
"kind": 1024,
@@ -20632,7 +75660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1443,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1443"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1443"
}
],
"type": {
@@ -20644,7 +75672,7 @@
}
},
{
- "id": 1297,
+ "id": 1320,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -20656,7 +75684,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1445,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1445"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1445"
}
],
"type": {
@@ -20665,7 +75693,7 @@
}
},
{
- "id": 1294,
+ "id": 1317,
"name": "kty",
"variant": "declaration",
"kind": 1024,
@@ -20675,7 +75703,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1442,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1442"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1442"
}
],
"type": {
@@ -20700,7 +75728,7 @@
"groups": [
{
"title": "Properties",
- "children": [1296, 1295, 1297, 1294]
+ "children": [1319, 1318, 1320, 1317]
}
],
"sources": [
@@ -20708,12 +75736,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1441,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1441"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1441"
}
],
"indexSignatures": [
{
- "id": 1298,
+ "id": 1321,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -20723,12 +75751,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1446,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1446"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1446"
}
],
"parameters": [
{
- "id": 1299,
+ "id": 1322,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -20747,14 +75775,14 @@
]
},
{
- "id": 766,
+ "id": 789,
"name": "Session",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 769,
+ "id": 792,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -20772,7 +75800,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 234,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L234"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L234"
}
],
"type": {
@@ -20781,7 +75809,7 @@
}
},
{
- "id": 772,
+ "id": 795,
"name": "expires_at",
"variant": "declaration",
"kind": 1024,
@@ -20801,7 +75829,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 246,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L246"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L246"
}
],
"type": {
@@ -20810,7 +75838,7 @@
}
},
{
- "id": 771,
+ "id": 794,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -20828,7 +75856,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L242"
}
],
"type": {
@@ -20837,7 +75865,7 @@
}
},
{
- "id": 768,
+ "id": 791,
"name": "provider_refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -20857,7 +75885,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L230"
}
],
"type": {
@@ -20875,7 +75903,7 @@
}
},
{
- "id": 767,
+ "id": 790,
"name": "provider_token",
"variant": "declaration",
"kind": 1024,
@@ -20895,7 +75923,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L225"
}
],
"type": {
@@ -20913,7 +75941,7 @@
}
},
{
- "id": 770,
+ "id": 793,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -20931,7 +75959,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L238"
}
],
"type": {
@@ -20940,7 +75968,7 @@
}
},
{
- "id": 773,
+ "id": 796,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -20950,7 +75978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 247,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L247"
}
],
"type": {
@@ -20959,7 +75987,7 @@
}
},
{
- "id": 774,
+ "id": 797,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -20977,12 +76005,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 252,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L252"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -20991,7 +76019,7 @@
"groups": [
{
"title": "Properties",
- "children": [769, 772, 771, 768, 767, 770, 773, 774]
+ "children": [792, 795, 794, 791, 790, 793, 796, 797]
}
],
"sources": [
@@ -20999,19 +76027,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 221,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L221"
}
]
},
{
- "id": 855,
+ "id": 878,
"name": "Subscription",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 857,
+ "id": 880,
"name": "callback",
"variant": "declaration",
"kind": 1024,
@@ -21029,13 +76057,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 858,
+ "id": 881,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21045,12 +76073,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 500,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"signatures": [
{
- "id": 859,
+ "id": 882,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21060,25 +76088,25 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 500,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L500"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L500"
}
],
"parameters": [
{
- "id": 860,
+ "id": 883,
"name": "event",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 665,
+ "target": 688,
"name": "AuthChangeEvent",
"package": "@supabase/auth-js"
}
},
{
- "id": 861,
+ "id": 884,
"name": "session",
"variant": "param",
"kind": 32768,
@@ -21092,7 +76120,7 @@
},
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -21110,7 +76138,7 @@
}
},
{
- "id": 856,
+ "id": 879,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -21128,7 +76156,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 496,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L496"
}
],
"type": {
@@ -21137,7 +76165,7 @@
}
},
{
- "id": 862,
+ "id": 885,
"name": "unsubscribe",
"variant": "declaration",
"kind": 1024,
@@ -21155,13 +76183,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L504"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 863,
+ "id": 886,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -21171,12 +76199,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L504"
}
],
"signatures": [
{
- "id": 864,
+ "id": 887,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -21186,7 +76214,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 504,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L504"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L504"
}
],
"type": {
@@ -21202,7 +76230,7 @@
"groups": [
{
"title": "Properties",
- "children": [857, 856, 862]
+ "children": [880, 879, 885]
}
],
"sources": [
@@ -21210,19 +76238,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 492,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L492"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L492"
}
]
},
{
- "id": 810,
+ "id": 833,
"name": "User",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 821,
+ "id": 844,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -21234,7 +76262,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L368"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L368"
}
],
"type": {
@@ -21243,7 +76271,7 @@
}
},
{
- "id": 812,
+ "id": 835,
"name": "app_metadata",
"variant": "declaration",
"kind": 1024,
@@ -21253,18 +76281,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L359"
}
],
"type": {
"type": "reference",
- "target": 803,
+ "target": 826,
"name": "UserAppMetadata",
"package": "@supabase/auth-js"
}
},
{
- "id": 814,
+ "id": 837,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -21274,7 +76302,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 361,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L361"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L361"
}
],
"type": {
@@ -21283,7 +76311,7 @@
}
},
{
- "id": 815,
+ "id": 838,
"name": "confirmation_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -21295,7 +76323,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 362,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L362"
}
],
"type": {
@@ -21304,7 +76332,7 @@
}
},
{
- "id": 825,
+ "id": 848,
"name": "confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -21316,7 +76344,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 372,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L372"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L372"
}
],
"type": {
@@ -21325,7 +76353,7 @@
}
},
{
- "id": 824,
+ "id": 847,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -21335,7 +76363,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 371,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L371"
}
],
"type": {
@@ -21344,7 +76372,7 @@
}
},
{
- "id": 835,
+ "id": 858,
"name": "deleted_at",
"variant": "declaration",
"kind": 1024,
@@ -21356,7 +76384,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L382"
}
],
"type": {
@@ -21365,7 +76393,7 @@
}
},
{
- "id": 822,
+ "id": 845,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -21377,7 +76405,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 369,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L369"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L369"
}
],
"type": {
@@ -21386,7 +76414,7 @@
}
},
{
- "id": 817,
+ "id": 840,
"name": "email_change_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -21398,7 +76426,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 364,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L364"
}
],
"type": {
@@ -21407,7 +76435,7 @@
}
},
{
- "id": 826,
+ "id": 849,
"name": "email_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -21419,7 +76447,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 373,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L373"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L373"
}
],
"type": {
@@ -21428,7 +76456,7 @@
}
},
{
- "id": 834,
+ "id": 857,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -21440,7 +76468,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 381,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L381"
}
],
"type": {
@@ -21450,22 +76478,22 @@
"types": [
{
"type": "reference",
- "target": 793,
+ "target": 816,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21479,22 +76507,22 @@
},
{
"type": "reference",
- "target": 793,
+ "target": 816,
"typeArguments": [
{
"type": "union",
"types": [
{
"type": "literal",
- "value": "webauthn"
+ "value": "totp"
},
{
"type": "literal",
- "value": "totp"
+ "value": "phone"
},
{
"type": "literal",
- "value": "phone"
+ "value": "webauthn"
}
]
},
@@ -21511,7 +76539,7 @@
}
},
{
- "id": 811,
+ "id": 834,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -21521,7 +76549,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 358,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L358"
}
],
"type": {
@@ -21530,7 +76558,7 @@
}
},
{
- "id": 831,
+ "id": 854,
"name": "identities",
"variant": "declaration",
"kind": 1024,
@@ -21542,21 +76570,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 378,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L378"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L378"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 780,
+ "target": 803,
"name": "UserIdentity",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 820,
+ "id": 843,
"name": "invited_at",
"variant": "declaration",
"kind": 1024,
@@ -21568,7 +76596,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 367,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L367"
}
],
"type": {
@@ -21577,7 +76605,7 @@
}
},
{
- "id": 832,
+ "id": 855,
"name": "is_anonymous",
"variant": "declaration",
"kind": 1024,
@@ -21589,7 +76617,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 379,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L379"
}
],
"type": {
@@ -21598,7 +76626,7 @@
}
},
{
- "id": 833,
+ "id": 856,
"name": "is_sso_user",
"variant": "declaration",
"kind": 1024,
@@ -21610,7 +76638,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 380,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L380"
}
],
"type": {
@@ -21619,7 +76647,7 @@
}
},
{
- "id": 828,
+ "id": 851,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -21631,7 +76659,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 375,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L375"
}
],
"type": {
@@ -21640,7 +76668,7 @@
}
},
{
- "id": 818,
+ "id": 841,
"name": "new_email",
"variant": "declaration",
"kind": 1024,
@@ -21652,7 +76680,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 365,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L365"
}
],
"type": {
@@ -21661,7 +76689,7 @@
}
},
{
- "id": 819,
+ "id": 842,
"name": "new_phone",
"variant": "declaration",
"kind": 1024,
@@ -21673,7 +76701,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L366"
}
],
"type": {
@@ -21682,7 +76710,7 @@
}
},
{
- "id": 823,
+ "id": 846,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -21694,7 +76722,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 370,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L370"
}
],
"type": {
@@ -21703,7 +76731,7 @@
}
},
{
- "id": 827,
+ "id": 850,
"name": "phone_confirmed_at",
"variant": "declaration",
"kind": 1024,
@@ -21715,7 +76743,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 374,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L374"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L374"
}
],
"type": {
@@ -21724,7 +76752,7 @@
}
},
{
- "id": 816,
+ "id": 839,
"name": "recovery_sent_at",
"variant": "declaration",
"kind": 1024,
@@ -21736,7 +76764,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 363,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L363"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L363"
}
],
"type": {
@@ -21745,7 +76773,7 @@
}
},
{
- "id": 829,
+ "id": 852,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -21757,7 +76785,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 376,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L376"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L376"
}
],
"type": {
@@ -21766,7 +76794,7 @@
}
},
{
- "id": 830,
+ "id": 853,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -21778,7 +76806,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 377,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L377"
}
],
"type": {
@@ -21787,7 +76815,7 @@
}
},
{
- "id": 813,
+ "id": 836,
"name": "user_metadata",
"variant": "declaration",
"kind": 1024,
@@ -21797,12 +76825,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L360"
}
],
"type": {
"type": "reference",
- "target": 807,
+ "target": 830,
"name": "UserMetadata",
"package": "@supabase/auth-js"
}
@@ -21812,8 +76840,8 @@
{
"title": "Properties",
"children": [
- 821, 812, 814, 815, 825, 824, 835, 822, 817, 826, 834, 811, 831, 820, 832, 833, 828,
- 818, 819, 823, 827, 816, 829, 830, 813
+ 844, 835, 837, 838, 848, 847, 858, 845, 840, 849, 857, 834, 854, 843, 855, 856, 851,
+ 841, 842, 846, 850, 839, 852, 853, 836
]
}
],
@@ -21822,19 +76850,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 357,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L357"
}
]
},
{
- "id": 803,
+ "id": 826,
"name": "UserAppMetadata",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 804,
+ "id": 827,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -21846,7 +76874,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 349,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L349"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L349"
}
],
"type": {
@@ -21858,7 +76886,7 @@
"groups": [
{
"title": "Properties",
- "children": [804]
+ "children": [827]
}
],
"sources": [
@@ -21866,12 +76894,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 348,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L348"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L348"
}
],
"indexSignatures": [
{
- "id": 805,
+ "id": 828,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -21881,12 +76909,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 350,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L350"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L350"
}
],
"parameters": [
{
- "id": 806,
+ "id": 829,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -21905,14 +76933,14 @@
]
},
{
- "id": 836,
+ "id": 859,
"name": "UserAttributes",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 841,
+ "id": 864,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -21948,7 +76976,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 414,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L414"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L414"
}
],
"type": {
@@ -21957,7 +76985,7 @@
}
},
{
- "id": 837,
+ "id": 860,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -21977,7 +77005,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 389,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L389"
}
],
"type": {
@@ -21986,7 +77014,7 @@
}
},
{
- "id": 840,
+ "id": 863,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -22006,7 +77034,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L406"
}
],
"type": {
@@ -22015,7 +77043,7 @@
}
},
{
- "id": 839,
+ "id": 862,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -22035,7 +77063,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 399,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L399"
}
],
"type": {
@@ -22044,7 +77072,7 @@
}
},
{
- "id": 838,
+ "id": 861,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -22064,7 +77092,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 394,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L394"
}
],
"type": {
@@ -22076,7 +77104,7 @@
"groups": [
{
"title": "Properties",
- "children": [841, 837, 840, 839, 838]
+ "children": [864, 860, 863, 862, 861]
}
],
"sources": [
@@ -22084,19 +77112,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 385,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L385"
}
]
},
{
- "id": 780,
+ "id": 803,
"name": "UserIdentity",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 789,
+ "id": 812,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -22108,7 +77136,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 298,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L298"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L298"
}
],
"type": {
@@ -22117,7 +77145,7 @@
}
},
{
- "id": 781,
+ "id": 804,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -22127,7 +77155,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 291,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L291"
}
],
"type": {
@@ -22136,7 +77164,7 @@
}
},
{
- "id": 783,
+ "id": 806,
"name": "identity_data",
"variant": "declaration",
"kind": 1024,
@@ -22148,13 +77176,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L293"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 784,
+ "id": 807,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22164,12 +77192,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 293,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L293"
}
],
"indexSignatures": [
{
- "id": 785,
+ "id": 808,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -22179,12 +77207,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 294,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L294"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L294"
}
],
"parameters": [
{
- "id": 786,
+ "id": 809,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -22205,7 +77233,7 @@
}
},
{
- "id": 787,
+ "id": 810,
"name": "identity_id",
"variant": "declaration",
"kind": 1024,
@@ -22215,7 +77243,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 296,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L296"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L296"
}
],
"type": {
@@ -22224,7 +77252,7 @@
}
},
{
- "id": 790,
+ "id": 813,
"name": "last_sign_in_at",
"variant": "declaration",
"kind": 1024,
@@ -22236,7 +77264,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 299,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L299"
}
],
"type": {
@@ -22245,7 +77273,7 @@
}
},
{
- "id": 788,
+ "id": 811,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -22255,7 +77283,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 297,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L297"
}
],
"type": {
@@ -22264,7 +77292,7 @@
}
},
{
- "id": 791,
+ "id": 814,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -22276,7 +77304,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 300,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L300"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L300"
}
],
"type": {
@@ -22285,7 +77313,7 @@
}
},
{
- "id": 782,
+ "id": 805,
"name": "user_id",
"variant": "declaration",
"kind": 1024,
@@ -22295,7 +77323,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 292,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L292"
}
],
"type": {
@@ -22307,7 +77335,7 @@
"groups": [
{
"title": "Properties",
- "children": [789, 781, 783, 787, 790, 788, 791, 782]
+ "children": [812, 804, 806, 810, 813, 811, 814, 805]
}
],
"sources": [
@@ -22315,12 +77343,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 290,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L290"
}
]
},
{
- "id": 807,
+ "id": 830,
"name": "UserMetadata",
"variant": "declaration",
"kind": 256,
@@ -22330,12 +77358,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 353,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L353"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L353"
}
],
"indexSignatures": [
{
- "id": 808,
+ "id": 831,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -22345,12 +77373,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 354,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L354"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L354"
}
],
"parameters": [
{
- "id": 809,
+ "id": 832,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -22369,14 +77397,14 @@
]
},
{
- "id": 985,
+ "id": 1008,
"name": "VerifyEmailOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 986,
+ "id": 1009,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -22394,7 +77422,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 719,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L719"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L719"
}
],
"type": {
@@ -22403,7 +77431,7 @@
}
},
{
- "id": 989,
+ "id": 1012,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22415,20 +77443,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 724,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L724"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L724"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 990,
+ "id": 1013,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 992,
+ "id": 1015,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -22454,7 +77482,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 732,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L732"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L732"
}
],
"type": {
@@ -22463,7 +77491,7 @@
}
},
{
- "id": 991,
+ "id": 1014,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -22483,7 +77511,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 726,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L726"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L726"
}
],
"type": {
@@ -22495,7 +77523,7 @@
"groups": [
{
"title": "Properties",
- "children": [992, 991]
+ "children": [1015, 1014]
}
],
"sources": [
@@ -22503,14 +77531,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 724,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L724"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L724"
}
]
}
}
},
{
- "id": 987,
+ "id": 1010,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -22528,7 +77556,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 721,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L721"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L721"
}
],
"type": {
@@ -22537,7 +77565,7 @@
}
},
{
- "id": 988,
+ "id": 1011,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22555,12 +77583,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 723,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L723"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L723"
}
],
"type": {
"type": "reference",
- "target": 997,
+ "target": 1020,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -22569,7 +77597,7 @@
"groups": [
{
"title": "Properties",
- "children": [986, 989, 987, 988]
+ "children": [1009, 1012, 1010, 1011]
}
],
"sources": [
@@ -22577,19 +77605,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 717,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L717"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L717"
}
]
},
{
- "id": 977,
+ "id": 1000,
"name": "VerifyMobileOtpParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 981,
+ "id": 1004,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -22601,20 +77629,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 705,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L705"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L705"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 982,
+ "id": 1005,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 984,
+ "id": 1007,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -22640,7 +77668,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 714,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L714"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L714"
}
],
"type": {
@@ -22649,7 +77677,7 @@
}
},
{
- "id": 983,
+ "id": 1006,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -22669,7 +77697,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 707,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L707"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L707"
}
],
"type": {
@@ -22681,7 +77709,7 @@
"groups": [
{
"title": "Properties",
- "children": [984, 983]
+ "children": [1007, 1006]
}
],
"sources": [
@@ -22689,14 +77717,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 705,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L705"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L705"
}
]
}
}
},
{
- "id": 978,
+ "id": 1001,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -22714,7 +77742,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 700,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L700"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L700"
}
],
"type": {
@@ -22723,7 +77751,7 @@
}
},
{
- "id": 979,
+ "id": 1002,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -22741,7 +77769,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 702,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L702"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L702"
}
],
"type": {
@@ -22750,7 +77778,7 @@
}
},
{
- "id": 980,
+ "id": 1003,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22768,12 +77796,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 704,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L704"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L704"
}
],
"type": {
"type": "reference",
- "target": 996,
+ "target": 1019,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
}
@@ -22782,7 +77810,7 @@
"groups": [
{
"title": "Properties",
- "children": [981, 978, 979, 980]
+ "children": [1004, 1001, 1002, 1003]
}
],
"sources": [
@@ -22790,19 +77818,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 698,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L698"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L698"
}
]
},
{
- "id": 993,
+ "id": 1016,
"name": "VerifyTokenHashParams",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 994,
+ "id": 1017,
"name": "token_hash",
"variant": "declaration",
"kind": 1024,
@@ -22820,7 +77848,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 738,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L738"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L738"
}
],
"type": {
@@ -22829,7 +77857,7 @@
}
},
{
- "id": 995,
+ "id": 1018,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -22847,12 +77875,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 741,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L741"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L741"
}
],
"type": {
"type": "reference",
- "target": 997,
+ "target": 1020,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
}
@@ -22861,7 +77889,7 @@
"groups": [
{
"title": "Properties",
- "children": [994, 995]
+ "children": [1017, 1018]
}
],
"sources": [
@@ -22869,12 +77897,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 736,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L736"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L736"
}
]
},
{
- "id": 775,
+ "id": 798,
"name": "AMRMethod",
"variant": "declaration",
"kind": 2097152,
@@ -22884,7 +77912,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 269,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L269"
}
],
"type": {
@@ -22920,7 +77948,7 @@
{
"type": "reflection",
"declaration": {
- "id": 776,
+ "id": 799,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -22930,7 +77958,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 269,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L269"
}
]
}
@@ -22941,7 +77969,7 @@
}
},
{
- "id": 665,
+ "id": 688,
"name": "AuthChangeEvent",
"variant": "declaration",
"kind": 2097152,
@@ -22951,7 +77979,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 44,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L44"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L44"
}
],
"type": {
@@ -22983,7 +78011,7 @@
},
{
"type": "reference",
- "target": 664,
+ "target": 687,
"name": "AuthChangeEventMFA",
"package": "@supabase/auth-js"
}
@@ -22991,7 +78019,7 @@
}
},
{
- "id": 664,
+ "id": 687,
"name": "AuthChangeEventMFA",
"variant": "declaration",
"kind": 2097152,
@@ -23001,7 +78029,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 42,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L42"
}
],
"type": {
@@ -23010,7 +78038,7 @@
}
},
{
- "id": 1104,
+ "id": 1127,
"name": "AuthenticatorAssuranceLevels",
"variant": "declaration",
"kind": 2097152,
@@ -23020,7 +78048,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1118,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1118"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1118"
}
],
"type": {
@@ -23038,7 +78066,7 @@
}
},
{
- "id": 901,
+ "id": 924,
"name": "AuthFlowType",
"variant": "declaration",
"kind": 2097152,
@@ -23048,7 +78076,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 579,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L579"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L579"
}
],
"type": {
@@ -23066,7 +78094,7 @@
}
},
{
- "id": 1230,
+ "id": 1253,
"name": "AuthMFAAdminDeleteFactorParams",
"variant": "declaration",
"kind": 2097152,
@@ -23085,20 +78113,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1228,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1228"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1228"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1231,
+ "id": 1254,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1232,
+ "id": 1255,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -23116,7 +78144,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1230,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1230"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1230"
}
],
"type": {
@@ -23125,7 +78153,7 @@
}
},
{
- "id": 1233,
+ "id": 1256,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -23143,7 +78171,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1233,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1233"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1233"
}
],
"type": {
@@ -23155,7 +78183,7 @@
"groups": [
{
"title": "Properties",
- "children": [1232, 1233]
+ "children": [1255, 1256]
}
],
"sources": [
@@ -23163,14 +78191,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1228,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1228"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1228"
}
]
}
}
},
{
- "id": 1227,
+ "id": 1250,
"name": "AuthMFAAdminDeleteFactorResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23189,24 +78217,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1221,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1221"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1228,
+ "id": 1251,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1229,
+ "id": 1252,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -23224,7 +78252,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1223,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1223"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1223"
}
],
"type": {
@@ -23236,7 +78264,7 @@
"groups": [
{
"title": "Properties",
- "children": [1229]
+ "children": [1252]
}
],
"sources": [
@@ -23244,7 +78272,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1221,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1221"
}
]
}
@@ -23255,7 +78283,7 @@
}
},
{
- "id": 1237,
+ "id": 1260,
"name": "AuthMFAAdminListFactorsParams",
"variant": "declaration",
"kind": 2097152,
@@ -23274,20 +78302,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1247"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1238,
+ "id": 1261,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1239,
+ "id": 1262,
"name": "userId",
"variant": "declaration",
"kind": 1024,
@@ -23305,7 +78333,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1249,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1249"
}
],
"type": {
@@ -23317,7 +78345,7 @@
"groups": [
{
"title": "Properties",
- "children": [1239]
+ "children": [1262]
}
],
"sources": [
@@ -23325,14 +78353,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1247,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1247"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1247"
}
]
}
}
},
{
- "id": 1234,
+ "id": 1257,
"name": "AuthMFAAdminListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23351,24 +78379,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1239,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1239"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1239"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1235,
+ "id": 1258,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1236,
+ "id": 1259,
"name": "factors",
"variant": "declaration",
"kind": 1024,
@@ -23386,14 +78414,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1241,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1241"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 793,
+ "target": 816,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -23403,7 +78431,7 @@
"groups": [
{
"title": "Properties",
- "children": [1236]
+ "children": [1259]
}
],
"sources": [
@@ -23411,7 +78439,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1239,
"character": 60,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1239"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1239"
}
]
}
@@ -23422,7 +78450,7 @@
}
},
{
- "id": 1095,
+ "id": 1118,
"name": "AuthMFAChallengePhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23432,16 +78460,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1048,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1048"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1048"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23482,7 +78510,7 @@
}
},
{
- "id": 1099,
+ "id": 1122,
"name": "AuthMFAChallengeResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23492,7 +78520,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1100,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1100"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1100"
}
],
"type": {
@@ -23500,19 +78528,19 @@
"types": [
{
"type": "reference",
- "target": 1094,
+ "target": 1117,
"name": "AuthMFAChallengeTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1095,
+ "target": 1118,
"name": "AuthMFAChallengePhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1096,
+ "target": 1119,
"name": "AuthMFAChallengeWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -23520,7 +78548,7 @@
}
},
{
- "id": 1094,
+ "id": 1117,
"name": "AuthMFAChallengeTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23530,16 +78558,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1040,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1040"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1040"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23580,7 +78608,7 @@
}
},
{
- "id": 1096,
+ "id": 1119,
"name": "AuthMFAChallengeWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23611,16 +78639,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1069,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1069"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1069"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23661,7 +78689,7 @@
}
},
{
- "id": 1097,
+ "id": 1120,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"variant": "declaration",
"kind": 2097152,
@@ -23679,12 +78707,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1089,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1089"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1089"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23721,7 +78749,7 @@
}
},
{
- "id": 1098,
+ "id": 1121,
"name": "AuthMFAChallengeWebauthnServerResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23739,16 +78767,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1097,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1097"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1097"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 1097,
+ "target": 1120,
"name": "AuthMFAChallengeWebauthnResponseDataJSON",
"package": "@supabase/auth-js"
}
@@ -23758,7 +78786,7 @@
}
},
{
- "id": 1272,
+ "id": 1295,
"name": "AuthMFAEnrollPhoneResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23768,16 +78796,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1403,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1403"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1403"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23818,7 +78846,7 @@
}
},
{
- "id": 1090,
+ "id": 1113,
"name": "AuthMFAEnrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23828,7 +78856,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1015,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1015"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1015"
}
],
"type": {
@@ -23836,19 +78864,19 @@
"types": [
{
"type": "reference",
- "target": 1271,
+ "target": 1294,
"name": "AuthMFAEnrollTOTPResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1272,
+ "target": 1295,
"name": "AuthMFAEnrollPhoneResponse",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1273,
+ "target": 1296,
"name": "AuthMFAEnrollWebauthnResponse",
"package": "@supabase/auth-js"
}
@@ -23856,7 +78884,7 @@
}
},
{
- "id": 1271,
+ "id": 1294,
"name": "AuthMFAEnrollTOTPResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23866,16 +78894,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1394,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1394"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1394"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23916,7 +78944,7 @@
}
},
{
- "id": 1273,
+ "id": 1296,
"name": "AuthMFAEnrollWebauthnResponse",
"variant": "declaration",
"kind": 2097152,
@@ -23947,16 +78975,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1416,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1416"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1416"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -23997,7 +79025,7 @@
}
},
{
- "id": 1105,
+ "id": 1128,
"name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24007,24 +79035,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1120,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1120"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1106,
+ "id": 1129,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1109,
+ "id": 1132,
"name": "currentAuthenticationMethods",
"variant": "declaration",
"kind": 1024,
@@ -24042,21 +79070,21 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1137,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1137"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1137"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 777,
+ "target": 800,
"name": "AMREntry",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1107,
+ "id": 1130,
"name": "currentLevel",
"variant": "declaration",
"kind": 1024,
@@ -24074,7 +79102,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1122"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1122"
}
],
"type": {
@@ -24082,7 +79110,7 @@
"types": [
{
"type": "reference",
- "target": 1104,
+ "target": 1127,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -24094,7 +79122,7 @@
}
},
{
- "id": 1108,
+ "id": 1131,
"name": "nextLevel",
"variant": "declaration",
"kind": 1024,
@@ -24114,7 +79142,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#challenge",
- "target": 1131
+ "target": 1154
}
]
}
@@ -24125,7 +79153,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1130,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1130"
}
],
"type": {
@@ -24133,7 +79161,7 @@
"types": [
{
"type": "reference",
- "target": 1104,
+ "target": 1127,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
},
@@ -24148,7 +79176,7 @@
"groups": [
{
"title": "Properties",
- "children": [1109, 1107, 1108]
+ "children": [1132, 1130, 1131]
}
],
"sources": [
@@ -24156,7 +79184,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1120,
"character": 74,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1120"
}
]
}
@@ -24167,7 +79195,7 @@
}
},
{
- "id": 1100,
+ "id": 1123,
"name": "AuthMFAListFactorsResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24185,12 +79213,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1106"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1106"
}
],
"typeParameters": [
{
- "id": 1103,
+ "id": 1126,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -24225,7 +79253,7 @@
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "intersection",
@@ -24233,14 +79261,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1101,
+ "id": 1124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1102,
+ "id": 1125,
"name": "all",
"variant": "declaration",
"kind": 1024,
@@ -24258,18 +79286,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1110,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1110"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1110"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 816,
"name": "Factor",
"package": "@supabase/auth-js"
}
@@ -24283,7 +79311,7 @@
"groups": [
{
"title": "Properties",
- "children": [1102]
+ "children": [1125]
}
],
"sources": [
@@ -24291,7 +79319,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1108,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1108"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1108"
}
]
}
@@ -24307,7 +79335,7 @@
},
"objectType": {
"type": "reference",
- "target": 1103,
+ "target": 1126,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -24317,11 +79345,11 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "reference",
- "target": 793,
+ "target": 816,
"typeArguments": [
{
"type": "reference",
@@ -24355,7 +79383,7 @@
}
},
{
- "id": 1091,
+ "id": 1114,
"name": "AuthMFAUnenrollResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24365,24 +79393,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1020,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1020"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1020"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1092,
+ "id": 1115,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1093,
+ "id": 1116,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -24400,7 +79428,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1022,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1022"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1022"
}
],
"type": {
@@ -24412,7 +79440,7 @@
"groups": [
{
"title": "Properties",
- "children": [1093]
+ "children": [1116]
}
],
"sources": [
@@ -24420,7 +79448,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1020,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1020"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1020"
}
]
}
@@ -24431,7 +79459,7 @@
}
},
{
- "id": 1089,
+ "id": 1112,
"name": "AuthMFAVerifyResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24449,16 +79477,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1013,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1013"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1013"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 1082,
+ "target": 1105,
"name": "AuthMFAVerifyResponseData",
"package": "@supabase/auth-js"
}
@@ -24468,7 +79496,7 @@
}
},
{
- "id": 1082,
+ "id": 1105,
"name": "AuthMFAVerifyResponseData",
"variant": "declaration",
"kind": 2097152,
@@ -24486,20 +79514,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 992,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L992"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L992"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1083,
+ "id": 1106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1084,
+ "id": 1107,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -24517,7 +79545,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 994,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L994"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L994"
}
],
"type": {
@@ -24526,7 +79554,7 @@
}
},
{
- "id": 1086,
+ "id": 1109,
"name": "expires_in",
"variant": "declaration",
"kind": 1024,
@@ -24544,7 +79572,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1000,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1000"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1000"
}
],
"type": {
@@ -24553,7 +79581,7 @@
}
},
{
- "id": 1087,
+ "id": 1110,
"name": "refresh_token",
"variant": "declaration",
"kind": 1024,
@@ -24571,7 +79599,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1003,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1003"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1003"
}
],
"type": {
@@ -24580,7 +79608,7 @@
}
},
{
- "id": 1085,
+ "id": 1108,
"name": "token_type",
"variant": "declaration",
"kind": 1024,
@@ -24606,7 +79634,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 997,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L997"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L997"
}
],
"type": {
@@ -24615,7 +79643,7 @@
}
},
{
- "id": 1088,
+ "id": 1111,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24633,12 +79661,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1006,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1006"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1006"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -24647,7 +79675,7 @@
"groups": [
{
"title": "Properties",
- "children": [1084, 1086, 1087, 1085, 1088]
+ "children": [1107, 1109, 1110, 1108, 1111]
}
],
"sources": [
@@ -24655,14 +79683,135 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 992,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L992"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L992"
}
]
}
}
},
{
- "id": 733,
+ "id": 1412,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for getting OAuth authorization details.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1663,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1663"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 730,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1402,
+ "name": "OAuthAuthorizationDetails",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1413,
+ "name": "AuthOAuthConsentResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for OAuth consent decision (approve/deny).\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1669,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1669"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 730,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1414,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1415,
+ "name": "redirect_url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to redirect the user back to the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1671,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1671"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1415]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1669,
+ "character": 53,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1669"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 756,
"name": "AuthOtpResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24685,24 +79834,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 173,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L173"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 734,
+ "id": 757,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 737,
+ "id": 760,
"name": "messageId",
"variant": "declaration",
"kind": 1024,
@@ -24714,7 +79863,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L176"
}
],
"type": {
@@ -24732,7 +79881,7 @@
}
},
{
- "id": 736,
+ "id": 759,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -24742,7 +79891,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L175"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L175"
}
],
"type": {
@@ -24751,7 +79900,7 @@
}
},
{
- "id": 735,
+ "id": 758,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24761,7 +79910,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L174"
}
],
"type": {
@@ -24773,7 +79922,7 @@
"groups": [
{
"title": "Properties",
- "children": [737, 736, 735]
+ "children": [760, 759, 758]
}
],
"sources": [
@@ -24781,7 +79930,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 173,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L173"
}
]
}
@@ -24792,7 +79941,7 @@
}
},
{
- "id": 724,
+ "id": 747,
"name": "AuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -24802,24 +79951,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 157,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L157"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 725,
+ "id": 748,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 727,
+ "id": 750,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -24829,7 +79978,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 159,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L159"
}
],
"type": {
@@ -24837,7 +79986,7 @@
"types": [
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -24849,7 +79998,7 @@
}
},
{
- "id": 726,
+ "id": 749,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24859,7 +80008,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L158"
}
],
"type": {
@@ -24867,7 +80016,7 @@
"types": [
{
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -24882,7 +80031,7 @@
"groups": [
{
"title": "Properties",
- "children": [727, 726]
+ "children": [750, 749]
}
],
"sources": [
@@ -24890,7 +80039,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 157,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L157"
}
]
}
@@ -24901,7 +80050,7 @@
}
},
{
- "id": 728,
+ "id": 751,
"name": "AuthResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -24911,24 +80060,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L162"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 729,
+ "id": 752,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 731,
+ "id": 754,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -24938,7 +80087,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 164,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L164"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L164"
}
],
"type": {
@@ -24946,7 +80095,7 @@
"types": [
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
},
@@ -24958,7 +80107,7 @@
}
},
{
- "id": 730,
+ "id": 753,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -24968,7 +80117,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 163,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L163"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L163"
}
],
"type": {
@@ -24976,7 +80125,7 @@
"types": [
{
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
},
@@ -24988,7 +80137,7 @@
}
},
{
- "id": 732,
+ "id": 755,
"name": "weak_password",
"variant": "declaration",
"kind": 1024,
@@ -25000,7 +80149,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 165,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L165"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L165"
}
],
"type": {
@@ -25008,7 +80157,7 @@
"types": [
{
"type": "reference",
- "target": 698,
+ "target": 721,
"name": "WeakPassword",
"package": "@supabase/auth-js"
},
@@ -25023,7 +80172,7 @@
"groups": [
{
"title": "Properties",
- "children": [731, 730, 732]
+ "children": [754, 753, 755]
}
],
"sources": [
@@ -25031,7 +80180,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 162,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L162"
}
]
}
@@ -25042,7 +80191,7 @@
}
},
{
- "id": 738,
+ "id": 761,
"name": "AuthTokenResponse",
"variant": "declaration",
"kind": 2097152,
@@ -25052,24 +80201,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 179,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L179"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 739,
+ "id": 762,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 741,
+ "id": 764,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -25079,18 +80228,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L181"
}
],
"type": {
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 740,
+ "id": 763,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -25100,12 +80249,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L180"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -25114,7 +80263,7 @@
"groups": [
{
"title": "Properties",
- "children": [741, 740]
+ "children": [764, 763]
}
],
"sources": [
@@ -25122,7 +80271,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 179,
"character": 61,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L179"
}
]
}
@@ -25133,7 +80282,7 @@
}
},
{
- "id": 742,
+ "id": 765,
"name": "AuthTokenResponsePassword",
"variant": "declaration",
"kind": 2097152,
@@ -25143,24 +80292,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L184"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 743,
+ "id": 766,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 745,
+ "id": 768,
"name": "session",
"variant": "declaration",
"kind": 1024,
@@ -25170,18 +80319,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L186"
}
],
"type": {
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
},
{
- "id": 744,
+ "id": 767,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -25191,18 +80340,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 185,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L185"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
},
{
- "id": 746,
+ "id": 769,
"name": "weakPassword",
"variant": "declaration",
"kind": 1024,
@@ -25214,12 +80363,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L187"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L187"
}
],
"type": {
"type": "reference",
- "target": 698,
+ "target": 721,
"name": "WeakPassword",
"package": "@supabase/auth-js"
}
@@ -25228,7 +80377,7 @@
"groups": [
{
"title": "Properties",
- "children": [745, 744, 746]
+ "children": [768, 767, 769]
}
],
"sources": [
@@ -25236,7 +80385,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 184,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L184"
}
]
}
@@ -25247,7 +80396,7 @@
}
},
{
- "id": 1253,
+ "id": 1276,
"name": "CallRefreshTokenResult",
"variant": "declaration",
"kind": 2097152,
@@ -25257,16 +80406,16 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1299,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1299"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 766,
+ "target": 789,
"name": "Session",
"package": "@supabase/auth-js"
}
@@ -25276,7 +80425,7 @@
}
},
{
- "id": 1321,
+ "id": 1345,
"name": "CreateOAuthClientParams",
"variant": "declaration",
"kind": 2097152,
@@ -25292,22 +80441,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1513,
+ "line": 1515,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1513"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1515"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1322,
+ "id": 1346,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1323,
+ "id": 1347,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -25323,9 +80472,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1515,
+ "line": 1517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1515"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1517"
}
],
"type": {
@@ -25334,7 +80483,7 @@
}
},
{
- "id": 1324,
+ "id": 1348,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -25352,9 +80501,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1517,
+ "line": 1519,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1517"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1519"
}
],
"type": {
@@ -25363,7 +80512,7 @@
}
},
{
- "id": 1326,
+ "id": 1350,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -25381,23 +80530,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1521,
+ "line": 1523,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1521"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1523"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1302,
+ "target": 1325,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1325,
+ "id": 1349,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -25413,9 +80562,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1519,
+ "line": 1521,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1519"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1521"
}
],
"type": {
@@ -25427,7 +80576,7 @@
}
},
{
- "id": 1327,
+ "id": 1351,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -25445,23 +80594,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1523,
+ "line": 1525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1523"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1525"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1303,
+ "target": 1326,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1328,
+ "id": 1352,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -25479,9 +80628,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1525,
+ "line": 1527,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1525"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1527"
}
],
"type": {
@@ -25493,22 +80642,22 @@
"groups": [
{
"title": "Properties",
- "children": [1323, 1324, 1326, 1325, 1327, 1328]
+ "children": [1347, 1348, 1350, 1349, 1351, 1352]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1513,
+ "line": 1515,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1513"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1515"
}
]
}
}
},
{
- "id": 997,
+ "id": 1020,
"name": "EmailOtpType",
"variant": "declaration",
"kind": 2097152,
@@ -25518,7 +80667,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 745,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L745"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L745"
}
],
"type": {
@@ -25552,7 +80701,7 @@
}
},
{
- "id": 957,
+ "id": 980,
"name": "EthereumWallet",
"variant": "declaration",
"kind": 2097152,
@@ -25562,7 +80711,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 656,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L656"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L656"
}
],
"type": {
@@ -25576,7 +80725,7 @@
}
},
{
- "id": 958,
+ "id": 981,
"name": "EthereumWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -25586,7 +80735,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 658,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L658"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L658"
}
],
"type": {
@@ -25595,14 +80744,14 @@
{
"type": "reflection",
"declaration": {
- "id": 959,
+ "id": 982,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 960,
+ "id": 983,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -25612,7 +80761,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 660,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L660"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L660"
}
],
"type": {
@@ -25621,7 +80770,7 @@
}
},
{
- "id": 963,
+ "id": 986,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -25633,20 +80782,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 668,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L668"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 964,
+ "id": 987,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 966,
+ "id": 989,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -25666,7 +80815,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 673,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L673"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L673"
}
],
"type": {
@@ -25675,7 +80824,7 @@
}
},
{
- "id": 967,
+ "id": 990,
"name": "signInWithEthereum",
"variant": "declaration",
"kind": 1024,
@@ -25687,7 +80836,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 675,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L675"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L675"
}
],
"type": {
@@ -25744,7 +80893,7 @@
}
},
{
- "id": 965,
+ "id": 988,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -25764,7 +80913,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 670,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L670"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L670"
}
],
"type": {
@@ -25776,7 +80925,7 @@
"groups": [
{
"title": "Properties",
- "children": [966, 967, 965]
+ "children": [989, 990, 988]
}
],
"sources": [
@@ -25784,14 +80933,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 668,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L668"
}
]
}
}
},
{
- "id": 962,
+ "id": 985,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -25811,7 +80960,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 666,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L666"
}
],
"type": {
@@ -25820,7 +80969,7 @@
}
},
{
- "id": 961,
+ "id": 984,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -25848,12 +80997,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 663,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L663"
}
],
"type": {
"type": "reference",
- "target": 957,
+ "target": 980,
"name": "EthereumWallet",
"package": "@supabase/auth-js"
}
@@ -25862,7 +81011,7 @@
"groups": [
{
"title": "Properties",
- "children": [960, 963, 962, 961]
+ "children": [983, 986, 985, 984]
}
],
"sources": [
@@ -25870,7 +81019,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 659,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L659"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L659"
}
]
}
@@ -25878,14 +81027,14 @@
{
"type": "reflection",
"declaration": {
- "id": 968,
+ "id": 991,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 969,
+ "id": 992,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -25895,7 +81044,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 681,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L681"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L681"
}
],
"type": {
@@ -25904,7 +81053,7 @@
}
},
{
- "id": 970,
+ "id": 993,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -25946,7 +81095,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 684,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L684"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L684"
}
],
"type": {
@@ -25955,7 +81104,7 @@
}
},
{
- "id": 972,
+ "id": 995,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -25967,20 +81116,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 689,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L689"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 973,
+ "id": 996,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 974,
+ "id": 997,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -26000,7 +81149,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 691,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L691"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L691"
}
],
"type": {
@@ -26012,7 +81161,7 @@
"groups": [
{
"title": "Properties",
- "children": [974]
+ "children": [997]
}
],
"sources": [
@@ -26020,14 +81169,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 689,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L689"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L689"
}
]
}
}
},
{
- "id": 971,
+ "id": 994,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -26045,7 +81194,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 687,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L687"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L687"
}
],
"type": {
@@ -26062,7 +81211,7 @@
"groups": [
{
"title": "Properties",
- "children": [969, 970, 972, 971]
+ "children": [992, 993, 995, 994]
}
],
"sources": [
@@ -26070,7 +81219,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 680,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L680"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L680"
}
]
}
@@ -26079,7 +81228,7 @@
}
},
{
- "id": 793,
+ "id": 816,
"name": "Factor",
"variant": "declaration",
"kind": 2097152,
@@ -26103,7 +81252,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#enroll",
- "target": 1111
+ "target": 1134
},
{
"kind": "text",
@@ -26117,7 +81266,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueMFAApi#listFactors",
- "target": 1222
+ "target": 1245
},
{
"kind": "text",
@@ -26145,31 +81294,31 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 324,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L324"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L324"
}
],
"typeParameters": [
{
- "id": 801,
+ "id": 824,
"name": "Type",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
"type": "reference",
- "target": 792,
+ "target": 815,
"name": "FactorType",
"package": "@supabase/auth-js"
},
"default": {
"type": "reference",
- "target": 792,
+ "target": 815,
"name": "FactorType",
"package": "@supabase/auth-js"
}
},
{
- "id": 802,
+ "id": 825,
"name": "Status",
"variant": "typeParam",
"kind": 131072,
@@ -26208,14 +81357,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 794,
+ "id": 817,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 799,
+ "id": 822,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -26225,7 +81374,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 344,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L344"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L344"
}
],
"type": {
@@ -26234,7 +81383,7 @@
}
},
{
- "id": 797,
+ "id": 820,
"name": "factor_type",
"variant": "declaration",
"kind": 1024,
@@ -26268,19 +81417,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 337,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L337"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L337"
}
],
"type": {
"type": "reference",
- "target": 801,
+ "target": 824,
"name": "Type",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 796,
+ "id": 819,
"name": "friendly_name",
"variant": "declaration",
"kind": 1024,
@@ -26300,7 +81449,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 332,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L332"
}
],
"type": {
@@ -26309,7 +81458,7 @@
}
},
{
- "id": 795,
+ "id": 818,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -26327,7 +81476,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L329"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L329"
}
],
"type": {
@@ -26336,7 +81485,7 @@
}
},
{
- "id": 798,
+ "id": 821,
"name": "status",
"variant": "declaration",
"kind": 1024,
@@ -26382,19 +81531,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L342"
}
],
"type": {
"type": "reference",
- "target": 802,
+ "target": 825,
"name": "Status",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 800,
+ "id": 823,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -26404,7 +81553,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 345,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L345"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L345"
}
],
"type": {
@@ -26416,7 +81565,7 @@
"groups": [
{
"title": "Properties",
- "children": [799, 797, 796, 795, 798, 800]
+ "children": [822, 820, 819, 818, 821, 823]
}
],
"sources": [
@@ -26424,14 +81573,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 327,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L327"
}
]
}
}
},
{
- "id": 792,
+ "id": 815,
"name": "FactorType",
"variant": "declaration",
"kind": 2097152,
@@ -26465,7 +81614,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 308,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L308"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L308"
}
],
"type": {
@@ -26490,7 +81639,7 @@
}
},
{
- "id": 1041,
+ "id": 1064,
"name": "GenerateEmailChangeLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -26500,20 +81649,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 812,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L812"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L812"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1042,
+ "id": 1065,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1044,
+ "id": 1067,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -26531,7 +81680,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 815,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L815"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L815"
}
],
"type": {
@@ -26540,7 +81689,7 @@
}
},
{
- "id": 1045,
+ "id": 1068,
"name": "newEmail",
"variant": "declaration",
"kind": 1024,
@@ -26558,7 +81707,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 819,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L819"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L819"
}
],
"type": {
@@ -26567,7 +81716,7 @@
}
},
{
- "id": 1046,
+ "id": 1069,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -26579,7 +81728,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 820,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L820"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L820"
}
],
"type": {
@@ -26591,7 +81740,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1047,
+ "target": 1070,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -26605,7 +81754,7 @@
}
},
{
- "id": 1043,
+ "id": 1066,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -26615,7 +81764,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 813,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L813"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L813"
}
],
"type": {
@@ -26636,7 +81785,7 @@
"groups": [
{
"title": "Properties",
- "children": [1044, 1045, 1046, 1043]
+ "children": [1067, 1068, 1069, 1066]
}
],
"sources": [
@@ -26644,14 +81793,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 812,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L812"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L812"
}
]
}
}
},
{
- "id": 1031,
+ "id": 1054,
"name": "GenerateInviteOrMagiclinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -26661,20 +81810,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 798,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L798"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L798"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1032,
+ "id": 1055,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1034,
+ "id": 1057,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -26692,7 +81841,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 801,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L801"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L801"
}
],
"type": {
@@ -26701,7 +81850,7 @@
}
},
{
- "id": 1035,
+ "id": 1058,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -26713,7 +81862,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 802,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L802"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L802"
}
],
"type": {
@@ -26725,7 +81874,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1047,
+ "target": 1070,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -26748,7 +81897,7 @@
}
},
{
- "id": 1033,
+ "id": 1056,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -26758,7 +81907,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 799,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L799"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L799"
}
],
"type": {
@@ -26779,7 +81928,7 @@
"groups": [
{
"title": "Properties",
- "children": [1034, 1035, 1033]
+ "children": [1057, 1058, 1056]
}
],
"sources": [
@@ -26787,14 +81936,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 798,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L798"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L798"
}
]
}
}
},
{
- "id": 1050,
+ "id": 1073,
"name": "GenerateLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -26804,7 +81953,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 834,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L834"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L834"
}
],
"type": {
@@ -26812,25 +81961,25 @@
"types": [
{
"type": "reference",
- "target": 1025,
+ "target": 1048,
"name": "GenerateSignupLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1031,
+ "target": 1054,
"name": "GenerateInviteOrMagiclinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1036,
+ "target": 1059,
"name": "GenerateRecoveryLinkParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1041,
+ "target": 1064,
"name": "GenerateEmailChangeLinkParams",
"package": "@supabase/auth-js"
}
@@ -26838,7 +81987,7 @@
}
},
{
- "id": 1055,
+ "id": 1078,
"name": "GenerateLinkProperties",
"variant": "declaration",
"kind": 2097152,
@@ -26856,20 +82005,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 846,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L846"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1056,
+ "id": 1079,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1057,
+ "id": 1080,
"name": "action_link",
"variant": "declaration",
"kind": 1024,
@@ -26887,7 +82036,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 851,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L851"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L851"
}
],
"type": {
@@ -26896,7 +82045,7 @@
}
},
{
- "id": 1058,
+ "id": 1081,
"name": "email_otp",
"variant": "declaration",
"kind": 1024,
@@ -26914,7 +82063,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 856,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L856"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L856"
}
],
"type": {
@@ -26923,7 +82072,7 @@
}
},
{
- "id": 1059,
+ "id": 1082,
"name": "hashed_token",
"variant": "declaration",
"kind": 1024,
@@ -26941,7 +82090,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 860,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L860"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L860"
}
],
"type": {
@@ -26950,7 +82099,7 @@
}
},
{
- "id": 1060,
+ "id": 1083,
"name": "redirect_to",
"variant": "declaration",
"kind": 1024,
@@ -26968,7 +82117,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 862,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L862"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L862"
}
],
"type": {
@@ -26977,7 +82126,7 @@
}
},
{
- "id": 1061,
+ "id": 1084,
"name": "verification_type",
"variant": "declaration",
"kind": 1024,
@@ -26995,12 +82144,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 864,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L864"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L864"
}
],
"type": {
"type": "reference",
- "target": 1062,
+ "target": 1085,
"name": "GenerateLinkType",
"package": "@supabase/auth-js"
}
@@ -27009,7 +82158,7 @@
"groups": [
{
"title": "Properties",
- "children": [1057, 1058, 1059, 1060, 1061]
+ "children": [1080, 1081, 1082, 1083, 1084]
}
],
"sources": [
@@ -27017,14 +82166,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 846,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L846"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L846"
}
]
}
}
},
{
- "id": 1051,
+ "id": 1074,
"name": "GenerateLinkResponse",
"variant": "declaration",
"kind": 2097152,
@@ -27034,24 +82183,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 840,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L840"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 1052,
+ "id": 1075,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1053,
+ "id": 1076,
"name": "properties",
"variant": "declaration",
"kind": 1024,
@@ -27061,18 +82210,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 841,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L841"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L841"
}
],
"type": {
"type": "reference",
- "target": 1055,
+ "target": 1078,
"name": "GenerateLinkProperties",
"package": "@supabase/auth-js"
}
},
{
- "id": 1054,
+ "id": 1077,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -27082,12 +82231,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 842,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L842"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L842"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -27096,7 +82245,7 @@
"groups": [
{
"title": "Properties",
- "children": [1053, 1054]
+ "children": [1076, 1077]
}
],
"sources": [
@@ -27104,7 +82253,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 840,
"character": 64,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L840"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L840"
}
]
}
@@ -27115,7 +82264,7 @@
}
},
{
- "id": 1062,
+ "id": 1085,
"name": "GenerateLinkType",
"variant": "declaration",
"kind": 2097152,
@@ -27125,7 +82274,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 867,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L867"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L867"
}
],
"type": {
@@ -27159,7 +82308,7 @@
}
},
{
- "id": 1036,
+ "id": 1059,
"name": "GenerateRecoveryLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -27169,20 +82318,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 805,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L805"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1037,
+ "id": 1060,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1039,
+ "id": 1062,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27200,7 +82349,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 808,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L808"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L808"
}
],
"type": {
@@ -27209,7 +82358,7 @@
}
},
{
- "id": 1040,
+ "id": 1063,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27221,7 +82370,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 809,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L809"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L809"
}
],
"type": {
@@ -27233,7 +82382,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1047,
+ "target": 1070,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -27247,7 +82396,7 @@
}
},
{
- "id": 1038,
+ "id": 1061,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27257,7 +82406,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 806,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L806"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L806"
}
],
"type": {
@@ -27269,7 +82418,7 @@
"groups": [
{
"title": "Properties",
- "children": [1039, 1040, 1038]
+ "children": [1062, 1063, 1061]
}
],
"sources": [
@@ -27277,14 +82426,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 805,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L805"
}
]
}
}
},
{
- "id": 1025,
+ "id": 1048,
"name": "GenerateSignupLinkParams",
"variant": "declaration",
"kind": 2097152,
@@ -27294,20 +82443,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 791,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L791"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L791"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1026,
+ "id": 1049,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1028,
+ "id": 1051,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -27317,7 +82466,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 793,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L793"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L793"
}
],
"type": {
@@ -27326,7 +82475,7 @@
}
},
{
- "id": 1030,
+ "id": 1053,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -27338,7 +82487,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 795,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L795"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L795"
}
],
"type": {
@@ -27350,7 +82499,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 1047,
+ "target": 1070,
"name": "GenerateLinkOptions",
"package": "@supabase/auth-js"
},
@@ -27373,7 +82522,7 @@
}
},
{
- "id": 1029,
+ "id": 1052,
"name": "password",
"variant": "declaration",
"kind": 1024,
@@ -27383,7 +82532,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 794,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L794"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L794"
}
],
"type": {
@@ -27392,7 +82541,7 @@
}
},
{
- "id": 1027,
+ "id": 1050,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -27402,7 +82551,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 792,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L792"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L792"
}
],
"type": {
@@ -27414,7 +82563,7 @@
"groups": [
{
"title": "Properties",
- "children": [1028, 1030, 1029, 1027]
+ "children": [1051, 1053, 1052, 1050]
}
],
"sources": [
@@ -27422,14 +82571,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 791,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L791"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L791"
}
]
}
}
},
{
- "id": 675,
+ "id": 698,
"name": "GoTrueClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -27439,20 +82588,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L70"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 676,
+ "id": 699,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 684,
+ "id": 707,
"name": "autoRefreshToken",
"variant": "declaration",
"kind": 1024,
@@ -27464,7 +82613,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L80"
}
],
"type": {
@@ -27473,7 +82622,7 @@
}
},
{
- "id": 690,
+ "id": 713,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -27485,7 +82634,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"type": {
@@ -27498,7 +82647,7 @@
{
"type": "reflection",
"declaration": {
- "id": 691,
+ "id": 714,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -27508,19 +82657,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 98,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L98"
}
],
"signatures": [
{
- "id": 692,
+ "id": 715,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 693,
+ "id": 716,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -27531,7 +82680,7 @@
}
},
{
- "id": 694,
+ "id": 717,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -27559,7 +82708,7 @@
}
},
{
- "id": 683,
+ "id": 706,
"name": "detectSessionInUrl",
"variant": "declaration",
"kind": 1024,
@@ -27571,7 +82720,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -27580,7 +82729,7 @@
}
},
{
- "id": 688,
+ "id": 711,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -27592,7 +82741,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 94,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L94"
}
],
"type": {
@@ -27606,7 +82755,7 @@
}
},
{
- "id": 689,
+ "id": 712,
"name": "flowType",
"variant": "declaration",
"kind": 1024,
@@ -27618,18 +82767,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L96"
}
],
"type": {
"type": "reference",
- "target": 901,
+ "target": 924,
"name": "AuthFlowType",
"package": "@supabase/auth-js"
}
},
{
- "id": 696,
+ "id": 719,
"name": "hasCustomAuthorizationHeader",
"variant": "declaration",
"kind": 1024,
@@ -27650,7 +82799,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L109"
}
],
"type": {
@@ -27659,7 +82808,7 @@
}
},
{
- "id": 678,
+ "id": 701,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -27671,13 +82820,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 679,
+ "id": 702,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -27687,12 +82836,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"indexSignatures": [
{
- "id": 680,
+ "id": 703,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -27702,12 +82851,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 74,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L74"
}
],
"parameters": [
{
- "id": 681,
+ "id": 704,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -27728,7 +82877,7 @@
}
},
{
- "id": 695,
+ "id": 718,
"name": "lock",
"variant": "declaration",
"kind": 1024,
@@ -27749,18 +82898,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L104"
}
],
"type": {
"type": "reference",
- "target": 666,
+ "target": 689,
"name": "LockFunc",
"package": "@supabase/auth-js"
}
},
{
- "id": 685,
+ "id": 708,
"name": "persistSession",
"variant": "declaration",
"kind": 1024,
@@ -27772,7 +82921,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L82"
}
],
"type": {
@@ -27781,7 +82930,7 @@
}
},
{
- "id": 686,
+ "id": 709,
"name": "storage",
"variant": "declaration",
"kind": 1024,
@@ -27793,18 +82942,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L84"
}
],
"type": {
"type": "reference",
- "target": 1247,
+ "target": 1270,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
},
{
- "id": 682,
+ "id": 705,
"name": "storageKey",
"variant": "declaration",
"kind": 1024,
@@ -27816,7 +82965,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L76"
}
],
"type": {
@@ -27825,7 +82974,7 @@
}
},
{
- "id": 677,
+ "id": 700,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -27837,7 +82986,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L72"
}
],
"type": {
@@ -27846,7 +82995,7 @@
}
},
{
- "id": 687,
+ "id": 710,
"name": "userStorage",
"variant": "declaration",
"kind": 1024,
@@ -27907,12 +83056,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 92,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L92"
}
],
"type": {
"type": "reference",
- "target": 1247,
+ "target": 1270,
"name": "SupportedStorage",
"package": "@supabase/auth-js"
}
@@ -27921,7 +83070,7 @@
"groups": [
{
"title": "Properties",
- "children": [684, 690, 683, 688, 689, 696, 678, 695, 685, 686, 682, 677, 687]
+ "children": [707, 713, 706, 711, 712, 719, 701, 718, 708, 709, 705, 700, 710]
}
],
"sources": [
@@ -27929,14 +83078,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 70,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L70"
}
]
}
}
},
{
- "id": 1250,
+ "id": 1273,
"name": "InitializeResult",
"variant": "declaration",
"kind": 2097152,
@@ -27946,20 +83095,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1297,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1297"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1251,
+ "id": 1274,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1252,
+ "id": 1275,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -27969,7 +83118,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1297,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1297"
}
],
"type": {
@@ -27977,7 +83126,7 @@
"types": [
{
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
},
@@ -27992,7 +83141,7 @@
"groups": [
{
"title": "Properties",
- "children": [1252]
+ "children": [1275]
}
],
"sources": [
@@ -28000,14 +83149,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1297,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1297"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1297"
}
]
}
}
},
{
- "id": 1274,
+ "id": 1297,
"name": "JwtHeader",
"variant": "declaration",
"kind": 2097152,
@@ -28017,20 +83166,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1420,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1420"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1420"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1275,
+ "id": 1298,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1276,
+ "id": 1299,
"name": "alg",
"variant": "declaration",
"kind": 1024,
@@ -28040,7 +83189,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1421,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1421"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1421"
}
],
"type": {
@@ -28062,7 +83211,7 @@
}
},
{
- "id": 1277,
+ "id": 1300,
"name": "kid",
"variant": "declaration",
"kind": 1024,
@@ -28072,7 +83221,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1422,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1422"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1422"
}
],
"type": {
@@ -28081,7 +83230,7 @@
}
},
{
- "id": 1278,
+ "id": 1301,
"name": "typ",
"variant": "declaration",
"kind": 1024,
@@ -28091,7 +83240,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1423,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1423"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1423"
}
],
"type": {
@@ -28103,7 +83252,7 @@
"groups": [
{
"title": "Properties",
- "children": [1276, 1277, 1278]
+ "children": [1299, 1300, 1301]
}
],
"sources": [
@@ -28111,14 +83260,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1420,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1420"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1420"
}
]
}
}
},
{
- "id": 1289,
+ "id": 1312,
"name": "JwtPayload",
"variant": "declaration",
"kind": 2097152,
@@ -28128,7 +83277,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1437,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1437"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1437"
}
],
"type": {
@@ -28136,14 +83285,14 @@
"types": [
{
"type": "reference",
- "target": 1279,
+ "target": 1302,
"name": "RequiredClaims",
"package": "@supabase/auth-js"
},
{
"type": "reflection",
"declaration": {
- "id": 1290,
+ "id": 1313,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28153,12 +83302,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1437,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1437"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1437"
}
],
"indexSignatures": [
{
- "id": 1291,
+ "id": 1314,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -28168,12 +83317,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1438,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1438"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1438"
}
],
"parameters": [
{
- "id": 1292,
+ "id": 1315,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -28196,7 +83345,7 @@
}
},
{
- "id": 666,
+ "id": 689,
"name": "LockFunc",
"variant": "declaration",
"kind": 2097152,
@@ -28223,13 +83372,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 667,
+ "id": 690,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28239,19 +83388,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 668,
+ "id": 691,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"typeParameters": [
{
- "id": 674,
+ "id": 697,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -28260,7 +83409,7 @@
],
"parameters": [
{
- "id": 669,
+ "id": 692,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -28279,7 +83428,7 @@
}
},
{
- "id": 670,
+ "id": 693,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -28306,7 +83455,7 @@
}
},
{
- "id": 671,
+ "id": 694,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -28322,7 +83471,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 672,
+ "id": 695,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -28332,12 +83481,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 68,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L68"
}
],
"signatures": [
{
- "id": 673,
+ "id": 696,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -28351,7 +83500,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 674,
+ "target": 697,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28375,7 +83524,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 674,
+ "target": 697,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -28390,7 +83539,7 @@
}
},
{
- "id": 1081,
+ "id": 1104,
"name": "MFAChallengeAndVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -28400,7 +83549,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 986,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L986"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L986"
}
],
"type": {
@@ -28414,7 +83563,7 @@
}
},
{
- "id": 1080,
+ "id": 1103,
"name": "MFAChallengeParams",
"variant": "declaration",
"kind": 2097152,
@@ -28424,7 +83573,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 973,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L973"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L973"
}
],
"type": {
@@ -28432,19 +83581,19 @@
"types": [
{
"type": "reference",
- "target": 1077,
+ "target": 1100,
"name": "MFAChallengeTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1078,
+ "target": 1101,
"name": "MFAChallengePhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1079,
+ "target": 1102,
"name": "MFAChallengeWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -28452,7 +83601,7 @@
}
},
{
- "id": 1078,
+ "id": 1101,
"name": "MFAChallengePhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -28462,12 +83611,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 950,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L950"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L950"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28498,7 +83647,7 @@
}
},
{
- "id": 1077,
+ "id": 1100,
"name": "MFAChallengeTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -28508,12 +83657,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 943,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L943"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L943"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "reference",
@@ -28530,7 +83679,7 @@
}
},
{
- "id": 1079,
+ "id": 1102,
"name": "MFAChallengeWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -28561,12 +83710,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 969,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L969"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L969"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28597,7 +83746,7 @@
}
},
{
- "id": 1063,
+ "id": 1086,
"name": "MFAEnrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -28607,7 +83756,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 875,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L875"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L875"
}
],
"type": {
@@ -28615,19 +83764,19 @@
"types": [
{
"type": "reference",
- "target": 1268,
+ "target": 1291,
"name": "MFAEnrollTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1269,
+ "target": 1292,
"name": "MFAEnrollPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1270,
+ "target": 1293,
"name": "MFAEnrollWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -28635,7 +83784,7 @@
}
},
{
- "id": 1269,
+ "id": 1292,
"name": "MFAEnrollPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -28645,12 +83794,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1347,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1347"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1347"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28687,7 +83836,7 @@
}
},
{
- "id": 1268,
+ "id": 1291,
"name": "MFAEnrollTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -28697,12 +83846,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1341,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1341"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1341"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28739,7 +83888,7 @@
}
},
{
- "id": 1270,
+ "id": 1293,
"name": "MFAEnrollWebauthnParams",
"variant": "declaration",
"kind": 2097152,
@@ -28770,12 +83919,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1360,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1360"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1360"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28812,7 +83961,7 @@
}
},
{
- "id": 1076,
+ "id": 1099,
"name": "MFATOTPChannel",
"variant": "declaration",
"kind": 2097152,
@@ -28822,7 +83971,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 941,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L941"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L941"
}
],
"type": {
@@ -28847,7 +83996,7 @@
}
},
{
- "id": 1064,
+ "id": 1087,
"name": "MFAUnenrollParams",
"variant": "declaration",
"kind": 2097152,
@@ -28857,20 +84006,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 877,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L877"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L877"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1065,
+ "id": 1088,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1066,
+ "id": 1089,
"name": "factorId",
"variant": "declaration",
"kind": 1024,
@@ -28888,7 +84037,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 879,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L879"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L879"
}
],
"type": {
@@ -28900,7 +84049,7 @@
"groups": [
{
"title": "Properties",
- "children": [1066]
+ "children": [1089]
}
],
"sources": [
@@ -28908,14 +84057,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 877,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L877"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L877"
}
]
}
}
},
{
- "id": 1075,
+ "id": 1098,
"name": "MFAVerifyParams",
"variant": "declaration",
"kind": 2097152,
@@ -28925,7 +84074,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 933,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L933"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L933"
}
],
"type": {
@@ -28933,19 +84082,19 @@
"types": [
{
"type": "reference",
- "target": 1067,
+ "target": 1090,
"name": "MFAVerifyTOTPParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1068,
+ "target": 1091,
"name": "MFAVerifyPhoneParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 1073,
+ "target": 1096,
"name": "MFAVerifyWebauthnParams",
"package": "@supabase/auth-js"
}
@@ -28953,7 +84102,7 @@
}
},
{
- "id": 1068,
+ "id": 1091,
"name": "MFAVerifyPhoneParams",
"variant": "declaration",
"kind": 2097152,
@@ -28963,12 +84112,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 898,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L898"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L898"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -28999,7 +84148,7 @@
}
},
{
- "id": 1067,
+ "id": 1090,
"name": "MFAVerifyTOTPParams",
"variant": "declaration",
"kind": 2097152,
@@ -29009,12 +84158,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 894,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L894"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L894"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -29045,7 +84194,7 @@
}
},
{
- "id": 1069,
+ "id": 1092,
"name": "MFAVerifyWebauthnParamFields",
"variant": "declaration",
"kind": 2097152,
@@ -29063,12 +84212,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 920,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L920"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L920"
}
],
"typeParameters": [
{
- "id": 1072,
+ "id": 1095,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -29112,80 +84261,381 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 1070,
+ "id": 1093,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1071,
- "name": "webauthn",
+ "id": 1094,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 921,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L921"
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
+ },
+ "name": "MFAVerifyWebauthnParamFieldsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1095,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnCredentialParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1094]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 920,
+ "character": 98,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L920"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1096,
+ "name": "MFAVerifyWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for WebAuthn MFA verification.\nUsed to verify WebAuthn credentials after challenge."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Verifying an Authentication Assertion",
+ "target": "https://w3c.github.io/webauthn/#sctn-verifying-assertion"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 930,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L930"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1097,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ },
+ "default": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 725,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1092,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1097,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1019,
+ "name": "MobileOtpType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 744,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L744"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1396,
+ "name": "OAuthAuthorizationClient",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client details in an authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1626,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1626"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1397,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1398,
+ "name": "client_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the OAuth client (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1628,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1628"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1399,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1630,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1630"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1400,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's website"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1632,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1632"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1401,
+ "name": "logo_uri",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 921,
+ "line": 1634,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L921"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1634"
}
],
"type": {
- "type": "intersection",
- "types": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
- },
- "name": "MFAVerifyWebauthnParamFieldsBase",
- "package": "@supabase/auth-js"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 1072,
- "name": "T",
- "package": "@supabase/auth-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "MFAVerifyWebauthnCredentialParamFields",
- "package": "@supabase/auth-js"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [1071]
+ "children": [1398, 1399, 1400, 1401]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 920,
- "character": 98,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L920"
+ "line": 1626,
+ "character": 39,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1626"
}
]
}
}
},
{
- "id": 1073,
- "name": "MFAVerifyWebauthnParams",
+ "id": 1402,
+ "name": "OAuthAuthorizationDetails",
"variant": "declaration",
"kind": 2097152,
"flags": {},
@@ -29193,142 +84643,262 @@
"summary": [
{
"kind": "text",
- "text": "Parameters for WebAuthn MFA verification.\nUsed to verify WebAuthn credentials after challenge."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "inline-tag",
- "tag": "@link",
- "text": "W3C WebAuthn Spec - Verifying an Authentication Assertion",
- "target": "https://w3c.github.io/webauthn/#sctn-verifying-assertion"
- }
- ]
+ "text": "OAuth authorization details for the consent flow.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
}
]
},
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 930,
+ "line": 1641,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L930"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1641"
}
],
- "typeParameters": [
- {
- "id": 1074,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1403,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
- }
- ]
- },
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "create"
+ "children": [
+ {
+ "id": 1404,
+ "name": "authorization_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID"
+ }
+ ]
},
- {
- "type": "literal",
- "value": "request"
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1643,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1643"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- },
- "default": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "create"
+ },
+ {
+ "id": 1406,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client requesting authorization"
+ }
+ ]
},
- {
- "type": "literal",
- "value": "request"
- }
- ]
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 702,
- "typeArguments": [
- {
- "type": "intersection",
- "types": [
- {
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1647,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1647"
+ }
+ ],
+ "type": {
"type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "MFAVerifyParamsBase"
- },
- "name": "MFAVerifyParamsBase",
+ "target": 1396,
+ "name": "OAuthAuthorizationClient",
"package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1405,
+ "name": "redirect_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
},
- {
- "type": "reference",
- "target": 1069,
- "typeArguments": [
+ "comment": {
+ "summary": [
{
- "type": "reference",
- "target": 1074,
- "name": "T",
- "package": "@supabase/auth-js",
- "refersToTypeParameter": true
+ "kind": "text",
+ "text": "Redirect URI - present if user already consented (can be used to trigger immediate redirect)"
}
- ],
- "name": "MFAVerifyWebauthnParamFields",
- "package": "@supabase/auth-js"
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1645,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1645"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ]
- }
- ],
- "name": "Prettify",
- "package": "@supabase/auth-js"
- }
- },
- {
- "id": 996,
- "name": "MobileOtpType",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 744,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L744"
+ },
+ {
+ "id": 1411,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Space-separated list of requested scopes"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1656,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1656"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1407,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User object associated with the authorization"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1649,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1649"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1408,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1410,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1653,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1653"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1409,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User ID (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1651,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1651"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1410, 1409]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1649,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1649"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1404, 1406, 1405, 1411, 1407]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1641,
+ "character": 40,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1641"
+ }
+ ]
}
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "sms"
- },
- {
- "type": "literal",
- "value": "phone_change"
- }
- ]
}
},
{
- "id": 1306,
+ "id": 1329,
"name": "OAuthClient",
"variant": "declaration",
"kind": 2097152,
@@ -29346,20 +84916,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1480,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1480"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1307,
+ "id": 1330,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1308,
+ "id": 1331,
"name": "client_id",
"variant": "declaration",
"kind": 1024,
@@ -29377,7 +84947,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1482,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1482"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1482"
}
],
"type": {
@@ -29386,7 +84956,7 @@
}
},
{
- "id": 1309,
+ "id": 1332,
"name": "client_name",
"variant": "declaration",
"kind": 1024,
@@ -29404,7 +84974,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1484,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1484"
}
],
"type": {
@@ -29413,7 +84983,7 @@
}
},
{
- "id": 1310,
+ "id": 1333,
"name": "client_secret",
"variant": "declaration",
"kind": 1024,
@@ -29433,7 +85003,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1486,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1486"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1486"
}
],
"type": {
@@ -29442,7 +85012,7 @@
}
},
{
- "id": 1311,
+ "id": 1334,
"name": "client_type",
"variant": "declaration",
"kind": 1024,
@@ -29460,18 +85030,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1488,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1488"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1488"
}
],
"type": {
"type": "reference",
- "target": 1304,
+ "target": 1327,
"name": "OAuthClientType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1314,
+ "id": 1337,
"name": "client_uri",
"variant": "declaration",
"kind": 1024,
@@ -29491,7 +85061,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1494,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1494"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1494"
}
],
"type": {
@@ -29500,7 +85070,7 @@
}
},
{
- "id": 1319,
+ "id": 1343,
"name": "created_at",
"variant": "declaration",
"kind": 1024,
@@ -29516,9 +85086,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1504,
+ "line": 1506,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1504"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1506"
}
],
"type": {
@@ -29527,7 +85097,7 @@
}
},
{
- "id": 1316,
+ "id": 1340,
"name": "grant_types",
"variant": "declaration",
"kind": 1024,
@@ -29543,23 +85113,52 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1498,
+ "line": 1500,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1498"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1500"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1302,
+ "target": 1325,
"name": "OAuthClientGrantType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1315,
+ "id": 1338,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1496,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1496"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1339,
"name": "redirect_uris",
"variant": "declaration",
"kind": 1024,
@@ -29575,9 +85174,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1496,
+ "line": 1498,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1496"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1498"
}
],
"type": {
@@ -29589,7 +85188,7 @@
}
},
{
- "id": 1313,
+ "id": 1336,
"name": "registration_type",
"variant": "declaration",
"kind": 1024,
@@ -29607,18 +85206,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1492,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1492"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1492"
}
],
"type": {
"type": "reference",
- "target": 1305,
+ "target": 1328,
"name": "OAuthClientRegistrationType",
"package": "@supabase/auth-js"
}
},
{
- "id": 1317,
+ "id": 1341,
"name": "response_types",
"variant": "declaration",
"kind": 1024,
@@ -29634,23 +85233,23 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1500,
+ "line": 1502,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1500"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1502"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1303,
+ "target": 1326,
"name": "OAuthClientResponseType",
"package": "@supabase/auth-js"
}
}
},
{
- "id": 1318,
+ "id": 1342,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -29668,9 +85267,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1502,
+ "line": 1504,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1502"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1504"
}
],
"type": {
@@ -29679,7 +85278,7 @@
}
},
{
- "id": 1312,
+ "id": 1335,
"name": "token_endpoint_auth_method",
"variant": "declaration",
"kind": 1024,
@@ -29697,7 +85296,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1490,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1490"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1490"
}
],
"type": {
@@ -29706,7 +85305,7 @@
}
},
{
- "id": 1320,
+ "id": 1344,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -29722,9 +85321,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1506,
+ "line": 1508,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1506"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1508"
}
],
"type": {
@@ -29737,7 +85336,8 @@
{
"title": "Properties",
"children": [
- 1308, 1309, 1310, 1311, 1314, 1319, 1316, 1315, 1313, 1317, 1318, 1312, 1320
+ 1331, 1332, 1333, 1334, 1337, 1343, 1340, 1338, 1339, 1336, 1341, 1342, 1335,
+ 1344
]
}
],
@@ -29746,14 +85346,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1480,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1480"
}
]
}
}
},
{
- "id": 1302,
+ "id": 1325,
"name": "OAuthClientGrantType",
"variant": "declaration",
"kind": 2097152,
@@ -29771,7 +85371,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1456,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1456"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1456"
}
],
"type": {
@@ -29789,7 +85389,7 @@
}
},
{
- "id": 1330,
+ "id": 1361,
"name": "OAuthClientListResponse",
"variant": "declaration",
"kind": 2097152,
@@ -29805,9 +85405,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1538,
+ "line": 1558,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1538"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1558"
}
],
"type": {
@@ -29816,14 +85416,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1331,
+ "id": 1362,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1332,
+ "id": 1363,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29831,9 +85431,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1540,
+ "line": 1560,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
@@ -29842,14 +85442,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1333,
+ "id": 1364,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1335,
+ "id": 1366,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -29857,9 +85457,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1540,
+ "line": 1560,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
@@ -29868,7 +85468,7 @@
}
},
{
- "id": 1334,
+ "id": 1365,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -29876,16 +85476,16 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1540,
+ "line": 1560,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1560"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 1306,
+ "target": 1329,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -29895,22 +85495,22 @@
"groups": [
{
"title": "Properties",
- "children": [1335, 1334]
+ "children": [1366, 1365]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1540,
+ "line": 1560,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1540"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1560"
}
]
}
},
{
"type": "reference",
- "target": 1254,
+ "target": 1277,
"name": "Pagination",
"package": "@supabase/auth-js"
}
@@ -29918,7 +85518,7 @@
}
},
{
- "id": 1336,
+ "id": 1367,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -29926,9 +85526,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1541,
+ "line": 1561,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1541"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1561"
}
],
"type": {
@@ -29940,15 +85540,15 @@
"groups": [
{
"title": "Properties",
- "children": [1332, 1336]
+ "children": [1363, 1367]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1539,
+ "line": 1559,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1539"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1559"
}
]
}
@@ -29956,14 +85556,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1337,
+ "id": 1368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1338,
+ "id": 1369,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -29971,22 +85571,22 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1564,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1564"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1339,
+ "id": 1370,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1340,
+ "id": 1371,
"name": "clients",
"variant": "declaration",
"kind": 1024,
@@ -29994,9 +85594,9 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1564,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1564"
}
],
"type": {
@@ -30007,22 +85607,22 @@
"groups": [
{
"title": "Properties",
- "children": [1340]
+ "children": [1371]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1544,
+ "line": 1564,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1544"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1564"
}
]
}
}
},
{
- "id": 1341,
+ "id": 1372,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30030,14 +85630,14 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1545,
+ "line": 1565,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1545"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1565"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30046,15 +85646,15 @@
"groups": [
{
"title": "Properties",
- "children": [1338, 1341]
+ "children": [1369, 1372]
}
],
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1543,
+ "line": 1563,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1543"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1563"
}
]
}
@@ -30063,7 +85663,7 @@
}
},
{
- "id": 1305,
+ "id": 1328,
"name": "OAuthClientRegistrationType",
"variant": "declaration",
"kind": 2097152,
@@ -30081,7 +85681,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1474,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1474"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1474"
}
],
"type": {
@@ -30099,7 +85699,7 @@
}
},
{
- "id": 1329,
+ "id": 1360,
"name": "OAuthClientResponse",
"variant": "declaration",
"kind": 2097152,
@@ -30115,18 +85715,18 @@
"sources": [
{
"fileName": "packages/core/auth-js/src/lib/types.ts",
- "line": 1532,
+ "line": 1552,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1532"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1552"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reference",
- "target": 1306,
+ "target": 1329,
"name": "OAuthClient",
"package": "@supabase/auth-js"
}
@@ -30136,7 +85736,7 @@
}
},
{
- "id": 1303,
+ "id": 1326,
"name": "OAuthClientResponseType",
"variant": "declaration",
"kind": 2097152,
@@ -30154,7 +85754,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1462,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1462"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1462"
}
],
"type": {
@@ -30163,7 +85763,7 @@
}
},
{
- "id": 1304,
+ "id": 1327,
"name": "OAuthClientType",
"variant": "declaration",
"kind": 2097152,
@@ -30181,7 +85781,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1468,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1468"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1468"
}
],
"type": {
@@ -30199,7 +85799,7 @@
}
},
{
- "id": 747,
+ "id": 770,
"name": "OAuthResponse",
"variant": "declaration",
"kind": 2097152,
@@ -30209,7 +85809,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 190,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L190"
}
],
"type": {
@@ -30218,14 +85818,14 @@
{
"type": "reflection",
"declaration": {
- "id": 748,
+ "id": 771,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 749,
+ "id": 772,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30235,20 +85835,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 192,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L192"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 750,
+ "id": 773,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 751,
+ "id": 774,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -30258,18 +85858,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 193,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L193"
}
],
"type": {
"type": "reference",
- "target": 663,
+ "target": 686,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 752,
+ "id": 775,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30279,7 +85879,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 194,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L194"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L194"
}
],
"type": {
@@ -30291,7 +85891,7 @@
"groups": [
{
"title": "Properties",
- "children": [751, 752]
+ "children": [774, 775]
}
],
"sources": [
@@ -30299,14 +85899,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 192,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L192"
}
]
}
}
},
{
- "id": 753,
+ "id": 776,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30316,7 +85916,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 196,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L196"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L196"
}
],
"type": {
@@ -30328,7 +85928,7 @@
"groups": [
{
"title": "Properties",
- "children": [749, 753]
+ "children": [772, 776]
}
],
"sources": [
@@ -30336,7 +85936,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 191,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L191"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L191"
}
]
}
@@ -30344,14 +85944,14 @@
{
"type": "reflection",
"declaration": {
- "id": 754,
+ "id": 777,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 755,
+ "id": 778,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30361,20 +85961,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 199,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L199"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 756,
+ "id": 779,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 757,
+ "id": 780,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -30384,18 +85984,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 200,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L200"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L200"
}
],
"type": {
"type": "reference",
- "target": 663,
+ "target": 686,
"name": "Provider",
"package": "@supabase/auth-js"
}
},
{
- "id": 758,
+ "id": 781,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -30405,7 +86005,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 201,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L201"
}
],
"type": {
@@ -30417,7 +86017,7 @@
"groups": [
{
"title": "Properties",
- "children": [757, 758]
+ "children": [780, 781]
}
],
"sources": [
@@ -30425,14 +86025,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 199,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L199"
}
]
}
}
},
{
- "id": 759,
+ "id": 782,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -30442,12 +86042,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 203,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L203"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L203"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30456,7 +86056,7 @@
"groups": [
{
"title": "Properties",
- "children": [755, 759]
+ "children": [778, 782]
}
],
"sources": [
@@ -30464,7 +86064,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 198,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L198"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L198"
}
]
}
@@ -30473,7 +86073,7 @@
}
},
{
- "id": 1261,
+ "id": 1284,
"name": "PageParams",
"variant": "declaration",
"kind": 2097152,
@@ -30483,20 +86083,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1308,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1308"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1308"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1262,
+ "id": 1285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1263,
+ "id": 1286,
"name": "page",
"variant": "declaration",
"kind": 1024,
@@ -30516,7 +86116,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1310,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1310"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1310"
}
],
"type": {
@@ -30525,7 +86125,7 @@
}
},
{
- "id": 1264,
+ "id": 1287,
"name": "perPage",
"variant": "declaration",
"kind": 1024,
@@ -30545,7 +86145,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1312,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1312"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1312"
}
],
"type": {
@@ -30557,7 +86157,7 @@
"groups": [
{
"title": "Properties",
- "children": [1263, 1264]
+ "children": [1286, 1287]
}
],
"sources": [
@@ -30565,14 +86165,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1308,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1308"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1308"
}
]
}
}
},
{
- "id": 1254,
+ "id": 1277,
"name": "Pagination",
"variant": "declaration",
"kind": 2097152,
@@ -30582,20 +86182,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1301,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1301"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1255,
+ "id": 1278,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1257,
+ "id": 1280,
"name": "lastPage",
"variant": "declaration",
"kind": 1024,
@@ -30605,7 +86205,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1304"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1304"
}
],
"type": {
@@ -30614,7 +86214,7 @@
}
},
{
- "id": 1256,
+ "id": 1279,
"name": "nextPage",
"variant": "declaration",
"kind": 1024,
@@ -30624,7 +86224,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1303,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1303"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1303"
}
],
"type": {
@@ -30642,7 +86242,7 @@
}
},
{
- "id": 1258,
+ "id": 1281,
"name": "total",
"variant": "declaration",
"kind": 1024,
@@ -30652,7 +86252,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1305"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1305"
}
],
"type": {
@@ -30664,7 +86264,7 @@
"groups": [
{
"title": "Properties",
- "children": [1257, 1256, 1258]
+ "children": [1280, 1279, 1281]
}
],
"sources": [
@@ -30672,12 +86272,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1301,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1301"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1301"
}
],
"indexSignatures": [
{
- "id": 1259,
+ "id": 1282,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -30687,12 +86287,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1302,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1302"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1302"
}
],
"parameters": [
{
- "id": 1260,
+ "id": 1283,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -30713,7 +86313,7 @@
}
},
{
- "id": 702,
+ "id": 725,
"name": "Prettify",
"variant": "declaration",
"kind": 2097152,
@@ -30731,12 +86331,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 124,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L124"
}
],
"typeParameters": [
{
- "id": 703,
+ "id": 726,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -30747,7 +86347,7 @@
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 703,
+ "target": 726,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30763,7 +86363,7 @@
},
"trueType": {
"type": "reference",
- "target": 703,
+ "target": 726,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30776,7 +86376,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 703,
+ "target": 726,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30796,7 +86396,7 @@
},
"objectType": {
"type": "reference",
- "target": 703,
+ "target": 726,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -30806,7 +86406,7 @@
}
},
{
- "id": 663,
+ "id": 686,
"name": "Provider",
"variant": "declaration",
"kind": 2097152,
@@ -30824,7 +86424,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 18,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L18"
}
],
"type": {
@@ -30922,7 +86522,7 @@
}
},
{
- "id": 707,
+ "id": 730,
"name": "RequestResult",
"variant": "declaration",
"kind": 2097152,
@@ -30940,19 +86540,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 136,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L136"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L136"
}
],
"typeParameters": [
{
- "id": 714,
+ "id": 737,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 715,
+ "id": 738,
"name": "ErrorType",
"variant": "typeParam",
"kind": 131072,
@@ -30968,7 +86568,7 @@
},
"default": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -30980,14 +86580,14 @@
{
"type": "reflection",
"declaration": {
- "id": 708,
+ "id": 731,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 709,
+ "id": 732,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -30997,19 +86597,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 138,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L138"
}
],
"type": {
"type": "reference",
- "target": 714,
+ "target": 737,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 710,
+ "id": 733,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31019,7 +86619,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L139"
}
],
"type": {
@@ -31031,7 +86631,7 @@
"groups": [
{
"title": "Properties",
- "children": [709, 710]
+ "children": [732, 733]
}
],
"sources": [
@@ -31039,7 +86639,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 137,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L137"
}
]
}
@@ -31047,14 +86647,14 @@
{
"type": "reflection",
"declaration": {
- "id": 711,
+ "id": 734,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 712,
+ "id": 735,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31064,7 +86664,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 142,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L142"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L142"
}
],
"type": {
@@ -31073,7 +86673,7 @@
}
},
{
- "id": 713,
+ "id": 736,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31083,7 +86683,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 143,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L143"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L143"
}
],
"type": {
@@ -31099,19 +86699,19 @@
},
"extendsType": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"trueType": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
},
"falseType": {
"type": "reference",
- "target": 715,
+ "target": 738,
"name": "ErrorType",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -31122,7 +86722,7 @@
"groups": [
{
"title": "Properties",
- "children": [712, 713]
+ "children": [735, 736]
}
],
"sources": [
@@ -31130,7 +86730,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 141,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L141"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L141"
}
]
}
@@ -31139,7 +86739,7 @@
}
},
{
- "id": 716,
+ "id": 739,
"name": "RequestResultSafeDestructure",
"variant": "declaration",
"kind": 2097152,
@@ -31162,12 +86762,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 150,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L150"
}
],
"typeParameters": [
{
- "id": 723,
+ "id": 746,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -31180,14 +86780,14 @@
{
"type": "reflection",
"declaration": {
- "id": 717,
+ "id": 740,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 718,
+ "id": 741,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31197,19 +86797,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L151"
}
],
"type": {
"type": "reference",
- "target": 723,
+ "target": 746,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
}
},
{
- "id": 719,
+ "id": 742,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31219,7 +86819,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 151,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L151"
}
],
"type": {
@@ -31231,7 +86831,7 @@
"groups": [
{
"title": "Properties",
- "children": [718, 719]
+ "children": [741, 742]
}
],
"sources": [
@@ -31239,7 +86839,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 151,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L151"
}
]
}
@@ -31247,14 +86847,14 @@
{
"type": "reflection",
"declaration": {
- "id": 720,
+ "id": 743,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 721,
+ "id": 744,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -31264,14 +86864,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 153,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L153"
}
],
"type": {
"type": "conditional",
"checkType": {
"type": "reference",
- "target": 723,
+ "target": 746,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -31288,7 +86888,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 723,
+ "target": 746,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -31306,7 +86906,7 @@
}
},
{
- "id": 722,
+ "id": 745,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -31316,12 +86916,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 154,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L154"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L154"
}
],
"type": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -31330,7 +86930,7 @@
"groups": [
{
"title": "Properties",
- "children": [721, 722]
+ "children": [744, 745]
}
],
"sources": [
@@ -31338,7 +86938,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 152,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L152"
}
]
}
@@ -31347,7 +86947,7 @@
}
},
{
- "id": 1279,
+ "id": 1302,
"name": "RequiredClaims",
"variant": "declaration",
"kind": 2097152,
@@ -31357,20 +86957,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1426,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1426"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1280,
+ "id": 1303,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1287,
+ "id": 1310,
"name": "aal",
"variant": "declaration",
"kind": 1024,
@@ -31380,18 +86980,18 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1433,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1433"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1433"
}
],
"type": {
"type": "reference",
- "target": 1104,
+ "target": 1127,
"name": "AuthenticatorAssuranceLevels",
"package": "@supabase/auth-js"
}
},
{
- "id": 1283,
+ "id": 1306,
"name": "aud",
"variant": "declaration",
"kind": 1024,
@@ -31401,7 +87001,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1429,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1429"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1429"
}
],
"type": {
@@ -31422,7 +87022,7 @@
}
},
{
- "id": 1284,
+ "id": 1307,
"name": "exp",
"variant": "declaration",
"kind": 1024,
@@ -31432,7 +87032,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1430,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1430"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1430"
}
],
"type": {
@@ -31441,7 +87041,7 @@
}
},
{
- "id": 1285,
+ "id": 1308,
"name": "iat",
"variant": "declaration",
"kind": 1024,
@@ -31451,7 +87051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1431,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1431"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1431"
}
],
"type": {
@@ -31460,7 +87060,7 @@
}
},
{
- "id": 1281,
+ "id": 1304,
"name": "iss",
"variant": "declaration",
"kind": 1024,
@@ -31470,7 +87070,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1427,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1427"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1427"
}
],
"type": {
@@ -31479,7 +87079,7 @@
}
},
{
- "id": 1286,
+ "id": 1309,
"name": "role",
"variant": "declaration",
"kind": 1024,
@@ -31489,7 +87089,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1432,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1432"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1432"
}
],
"type": {
@@ -31498,7 +87098,7 @@
}
},
{
- "id": 1288,
+ "id": 1311,
"name": "session_id",
"variant": "declaration",
"kind": 1024,
@@ -31508,7 +87108,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1434,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1434"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1434"
}
],
"type": {
@@ -31517,7 +87117,7 @@
}
},
{
- "id": 1282,
+ "id": 1305,
"name": "sub",
"variant": "declaration",
"kind": 1024,
@@ -31527,7 +87127,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1428,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1428"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1428"
}
],
"type": {
@@ -31539,7 +87139,7 @@
"groups": [
{
"title": "Properties",
- "children": [1287, 1283, 1284, 1285, 1281, 1286, 1288, 1282]
+ "children": [1310, 1306, 1307, 1308, 1304, 1309, 1311, 1305]
}
],
"sources": [
@@ -31547,14 +87147,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1426,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1426"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1426"
}
]
}
}
},
{
- "id": 998,
+ "id": 1021,
"name": "ResendParams",
"variant": "declaration",
"kind": 2097152,
@@ -31564,7 +87164,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 747,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L747"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L747"
}
],
"type": {
@@ -31573,14 +87173,14 @@
{
"type": "reflection",
"declaration": {
- "id": 999,
+ "id": 1022,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1001,
+ "id": 1024,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -31590,7 +87190,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 750,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L750"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L750"
}
],
"type": {
@@ -31599,7 +87199,7 @@
}
},
{
- "id": 1002,
+ "id": 1025,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31611,20 +87211,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 751,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L751"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L751"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1003,
+ "id": 1026,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1005,
+ "id": 1028,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31644,7 +87244,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 755,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L755"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L755"
}
],
"type": {
@@ -31653,7 +87253,7 @@
}
},
{
- "id": 1004,
+ "id": 1027,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -31673,7 +87273,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 753,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L753"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L753"
}
],
"type": {
@@ -31685,7 +87285,7 @@
"groups": [
{
"title": "Properties",
- "children": [1005, 1004]
+ "children": [1028, 1027]
}
],
"sources": [
@@ -31693,14 +87293,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 751,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L751"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L751"
}
]
}
}
},
{
- "id": 1000,
+ "id": 1023,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31710,7 +87310,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 749,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L749"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L749"
}
],
"type": {
@@ -31722,7 +87322,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 997,
+ "target": 1020,
"name": "EmailOtpType",
"package": "@supabase/auth-js"
},
@@ -31748,7 +87348,7 @@
"groups": [
{
"title": "Properties",
- "children": [1001, 1002, 1000]
+ "children": [1024, 1025, 1023]
}
],
"sources": [
@@ -31756,7 +87356,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 748,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L748"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L748"
}
]
}
@@ -31764,14 +87364,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1006,
+ "id": 1029,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1009,
+ "id": 1032,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31783,20 +87383,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 761,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L761"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L761"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1010,
+ "id": 1033,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1011,
+ "id": 1034,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31816,7 +87416,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 763,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L763"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L763"
}
],
"type": {
@@ -31828,7 +87428,7 @@
"groups": [
{
"title": "Properties",
- "children": [1011]
+ "children": [1034]
}
],
"sources": [
@@ -31836,14 +87436,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 761,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L761"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L761"
}
]
}
}
},
{
- "id": 1008,
+ "id": 1031,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -31853,7 +87453,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 760,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L760"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L760"
}
],
"type": {
@@ -31862,7 +87462,7 @@
}
},
{
- "id": 1007,
+ "id": 1030,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -31872,7 +87472,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 759,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L759"
}
],
"type": {
@@ -31884,7 +87484,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 996,
+ "target": 1019,
"name": "MobileOtpType",
"package": "@supabase/auth-js"
},
@@ -31910,7 +87510,7 @@
"groups": [
{
"title": "Properties",
- "children": [1009, 1008, 1007]
+ "children": [1032, 1031, 1030]
}
],
"sources": [
@@ -31918,7 +87518,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 758,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L758"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L758"
}
]
}
@@ -31927,7 +87527,7 @@
}
},
{
- "id": 865,
+ "id": 888,
"name": "SignInAnonymouslyCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -31937,20 +87537,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 507,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L507"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 866,
+ "id": 889,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 867,
+ "id": 890,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -31962,20 +87562,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 508,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L508"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L508"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 868,
+ "id": 891,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 870,
+ "id": 893,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -31995,7 +87595,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 516,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L516"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L516"
}
],
"type": {
@@ -32004,7 +87604,7 @@
}
},
{
- "id": 869,
+ "id": 892,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -32040,7 +87640,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 514,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L514"
}
],
"type": {
@@ -32052,7 +87652,7 @@
"groups": [
{
"title": "Properties",
- "children": [870, 869]
+ "children": [893, 892]
}
],
"sources": [
@@ -32060,7 +87660,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 508,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L508"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L508"
}
]
}
@@ -32070,7 +87670,7 @@
"groups": [
{
"title": "Properties",
- "children": [867]
+ "children": [890]
}
],
"sources": [
@@ -32078,14 +87678,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 507,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L507"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L507"
}
]
}
}
},
{
- "id": 914,
+ "id": 937,
"name": "SignInWithIdTokenCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -32095,20 +87695,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 595,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L595"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 915,
+ "id": 938,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 919,
+ "id": 942,
"name": "access_token",
"variant": "declaration",
"kind": 1024,
@@ -32136,7 +87736,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 601,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L601"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L601"
}
],
"type": {
@@ -32145,7 +87745,7 @@
}
},
{
- "id": 920,
+ "id": 943,
"name": "nonce",
"variant": "declaration",
"kind": 1024,
@@ -32173,7 +87773,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 603,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L603"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L603"
}
],
"type": {
@@ -32182,7 +87782,7 @@
}
},
{
- "id": 921,
+ "id": 944,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -32194,20 +87794,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 604,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L604"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 922,
+ "id": 945,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 923,
+ "id": 946,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -32227,7 +87827,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 606,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L606"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L606"
}
],
"type": {
@@ -32239,7 +87839,7 @@
"groups": [
{
"title": "Properties",
- "children": [923]
+ "children": [946]
}
],
"sources": [
@@ -32247,14 +87847,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 604,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L604"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L604"
}
]
}
}
},
{
- "id": 916,
+ "id": 939,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -32328,7 +87928,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L597"
}
],
"type": {
@@ -32364,7 +87964,7 @@
{
"type": "reflection",
"declaration": {
- "id": 917,
+ "id": 940,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32374,7 +87974,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 597,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L597"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L597"
}
]
}
@@ -32385,7 +87985,7 @@
}
},
{
- "id": 918,
+ "id": 941,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -32435,7 +88035,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 599,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L599"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L599"
}
],
"type": {
@@ -32447,7 +88047,7 @@
"groups": [
{
"title": "Properties",
- "children": [919, 920, 921, 916, 918]
+ "children": [942, 943, 944, 939, 941]
}
],
"sources": [
@@ -32455,14 +88055,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 595,
"character": 43,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L595"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L595"
}
]
}
}
},
{
- "id": 902,
+ "id": 925,
"name": "SignInWithOAuthCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -32472,20 +88072,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 580,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L580"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L580"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 903,
+ "id": 926,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 905,
+ "id": 928,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -32497,20 +88097,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L583"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 906,
+ "id": 929,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 909,
+ "id": 932,
"name": "queryParams",
"variant": "declaration",
"kind": 1024,
@@ -32530,13 +88130,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 589,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L589"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L589"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 910,
+ "id": 933,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -32546,12 +88146,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 589,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L589"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L589"
}
],
"indexSignatures": [
{
- "id": 911,
+ "id": 934,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -32561,12 +88161,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 589,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L589"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L589"
}
],
"parameters": [
{
- "id": 912,
+ "id": 935,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -32587,7 +88187,7 @@
}
},
{
- "id": 907,
+ "id": 930,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -32607,7 +88207,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 585,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L585"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L585"
}
],
"type": {
@@ -32616,7 +88216,7 @@
}
},
{
- "id": 908,
+ "id": 931,
"name": "scopes",
"variant": "declaration",
"kind": 1024,
@@ -32636,7 +88236,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 587,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L587"
}
],
"type": {
@@ -32645,7 +88245,7 @@
}
},
{
- "id": 913,
+ "id": 936,
"name": "skipBrowserRedirect",
"variant": "declaration",
"kind": 1024,
@@ -32665,7 +88265,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 591,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L591"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L591"
}
],
"type": {
@@ -32677,7 +88277,7 @@
"groups": [
{
"title": "Properties",
- "children": [909, 907, 908, 913]
+ "children": [932, 930, 931, 936]
}
],
"sources": [
@@ -32685,14 +88285,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 583,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L583"
}
]
}
}
},
{
- "id": 904,
+ "id": 927,
"name": "provider",
"variant": "declaration",
"kind": 1024,
@@ -32710,12 +88310,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 582,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L582"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L582"
}
],
"type": {
"type": "reference",
- "target": 663,
+ "target": 686,
"name": "Provider",
"package": "@supabase/auth-js"
}
@@ -32724,7 +88324,7 @@
"groups": [
{
"title": "Properties",
- "children": [905, 904]
+ "children": [928, 927]
}
],
"sources": [
@@ -32732,14 +88332,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 580,
"character": 41,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L580"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L580"
}
]
}
}
},
{
- "id": 879,
+ "id": 902,
"name": "SignInWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -32749,7 +88349,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 535,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L535"
}
],
"type": {
@@ -32767,14 +88367,14 @@
{
"type": "reflection",
"declaration": {
- "id": 880,
+ "id": 903,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 881,
+ "id": 904,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -32786,20 +88386,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L536"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 882,
+ "id": 905,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 883,
+ "id": 906,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -32811,7 +88411,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 537,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L537"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L537"
}
],
"type": {
@@ -32823,7 +88423,7 @@
"groups": [
{
"title": "Properties",
- "children": [883]
+ "children": [906]
}
],
"sources": [
@@ -32831,7 +88431,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 536,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L536"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L536"
}
]
}
@@ -32841,7 +88441,7 @@
"groups": [
{
"title": "Properties",
- "children": [881]
+ "children": [904]
}
],
"sources": [
@@ -32849,7 +88449,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 535,
"character": 70,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L535"
}
]
}
@@ -32858,7 +88458,7 @@
}
},
{
- "id": 884,
+ "id": 907,
"name": "SignInWithPasswordlessCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -32868,7 +88468,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 541,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L541"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L541"
}
],
"type": {
@@ -32877,14 +88477,14 @@
{
"type": "reflection",
"declaration": {
- "id": 885,
+ "id": 908,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 886,
+ "id": 909,
"name": "email",
"variant": "declaration",
"kind": 1024,
@@ -32902,7 +88502,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 544,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L544"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L544"
}
],
"type": {
@@ -32911,7 +88511,7 @@
}
},
{
- "id": 887,
+ "id": 910,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -32923,20 +88523,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 545,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L545"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L545"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 888,
+ "id": 911,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 892,
+ "id": 915,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -32956,7 +88556,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 557,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L557"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L557"
}
],
"type": {
@@ -32965,7 +88565,7 @@
}
},
{
- "id": 891,
+ "id": 914,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33001,7 +88601,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 555,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L555"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L555"
}
],
"type": {
@@ -33010,7 +88610,7 @@
}
},
{
- "id": 889,
+ "id": 912,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33030,7 +88630,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L547"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L547"
}
],
"type": {
@@ -33039,7 +88639,7 @@
}
},
{
- "id": 890,
+ "id": 913,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -33059,7 +88659,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L549"
}
],
"type": {
@@ -33071,7 +88671,7 @@
"groups": [
{
"title": "Properties",
- "children": [892, 891, 889, 890]
+ "children": [915, 914, 912, 913]
}
],
"sources": [
@@ -33079,7 +88679,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 545,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L545"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L545"
}
]
}
@@ -33089,7 +88689,7 @@
"groups": [
{
"title": "Properties",
- "children": [886, 887]
+ "children": [909, 910]
}
],
"sources": [
@@ -33097,7 +88697,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 542,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L542"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L542"
}
]
}
@@ -33105,14 +88705,14 @@
{
"type": "reflection",
"declaration": {
- "id": 893,
+ "id": 916,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 895,
+ "id": 918,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33124,20 +88724,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 563,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L563"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 896,
+ "id": 919,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 899,
+ "id": 922,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33157,7 +88757,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 573,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L573"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L573"
}
],
"type": {
@@ -33166,7 +88766,7 @@
}
},
{
- "id": 900,
+ "id": 923,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -33186,7 +88786,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 575,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L575"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L575"
}
],
"type": {
@@ -33204,7 +88804,7 @@
}
},
{
- "id": 898,
+ "id": 921,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33240,7 +88840,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 571,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L571"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L571"
}
],
"type": {
@@ -33249,7 +88849,7 @@
}
},
{
- "id": 897,
+ "id": 920,
"name": "shouldCreateUser",
"variant": "declaration",
"kind": 1024,
@@ -33269,7 +88869,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 565,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L565"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L565"
}
],
"type": {
@@ -33281,7 +88881,7 @@
"groups": [
{
"title": "Properties",
- "children": [899, 900, 898, 897]
+ "children": [922, 923, 921, 920]
}
],
"sources": [
@@ -33289,14 +88889,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 563,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L563"
}
]
}
}
},
{
- "id": 894,
+ "id": 917,
"name": "phone",
"variant": "declaration",
"kind": 1024,
@@ -33314,7 +88914,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 562,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L562"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L562"
}
],
"type": {
@@ -33326,7 +88926,7 @@
"groups": [
{
"title": "Properties",
- "children": [895, 894]
+ "children": [918, 917]
}
],
"sources": [
@@ -33334,7 +88934,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 560,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L560"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L560"
}
]
}
@@ -33343,7 +88943,7 @@
}
},
{
- "id": 1012,
+ "id": 1035,
"name": "SignInWithSSO",
"variant": "declaration",
"kind": 2097152,
@@ -33353,7 +88953,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 767,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L767"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L767"
}
],
"type": {
@@ -33362,14 +88962,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1013,
+ "id": 1036,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1015,
+ "id": 1038,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33381,20 +88981,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 772,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L772"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1016,
+ "id": 1039,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1018,
+ "id": 1041,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33414,7 +89014,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 776,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L776"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L776"
}
],
"type": {
@@ -33423,7 +89023,7 @@
}
},
{
- "id": 1017,
+ "id": 1040,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33443,7 +89043,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 774,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L774"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L774"
}
],
"type": {
@@ -33455,7 +89055,7 @@
"groups": [
{
"title": "Properties",
- "children": [1018, 1017]
+ "children": [1041, 1040]
}
],
"sources": [
@@ -33463,14 +89063,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 772,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L772"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L772"
}
]
}
}
},
{
- "id": 1014,
+ "id": 1037,
"name": "providerId",
"variant": "declaration",
"kind": 1024,
@@ -33488,7 +89088,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 770,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L770"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L770"
}
],
"type": {
@@ -33500,7 +89100,7 @@
"groups": [
{
"title": "Properties",
- "children": [1015, 1014]
+ "children": [1038, 1037]
}
],
"sources": [
@@ -33508,7 +89108,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 768,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L768"
}
]
}
@@ -33516,14 +89116,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1019,
+ "id": 1042,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1020,
+ "id": 1043,
"name": "domain",
"variant": "declaration",
"kind": 1024,
@@ -33541,7 +89141,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 781,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L781"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L781"
}
],
"type": {
@@ -33550,7 +89150,7 @@
}
},
{
- "id": 1021,
+ "id": 1044,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33562,20 +89162,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 783,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L783"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1022,
+ "id": 1045,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1024,
+ "id": 1047,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33595,7 +89195,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 787,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L787"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L787"
}
],
"type": {
@@ -33604,7 +89204,7 @@
}
},
{
- "id": 1023,
+ "id": 1046,
"name": "redirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33624,7 +89224,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 785,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L785"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L785"
}
],
"type": {
@@ -33636,7 +89236,7 @@
"groups": [
{
"title": "Properties",
- "children": [1024, 1023]
+ "children": [1047, 1046]
}
],
"sources": [
@@ -33644,7 +89244,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 783,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L783"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L783"
}
]
}
@@ -33654,7 +89254,7 @@
"groups": [
{
"title": "Properties",
- "children": [1020, 1021]
+ "children": [1043, 1044]
}
],
"sources": [
@@ -33662,7 +89262,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 779,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L779"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L779"
}
]
}
@@ -33671,7 +89271,7 @@
}
},
{
- "id": 1265,
+ "id": 1288,
"name": "SignOut",
"variant": "declaration",
"kind": 2097152,
@@ -33681,20 +89281,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1315,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1315"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 1266,
+ "id": 1289,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1267,
+ "id": 1290,
"name": "scope",
"variant": "declaration",
"kind": 1024,
@@ -33714,7 +89314,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1326,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1326"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1326"
}
],
"type": {
@@ -33739,7 +89339,7 @@
"groups": [
{
"title": "Properties",
- "children": [1267]
+ "children": [1290]
}
],
"sources": [
@@ -33747,14 +89347,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1315,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1315"
}
]
}
}
},
{
- "id": 1301,
+ "id": 1324,
"name": "SignOutScope",
"variant": "declaration",
"kind": 2097152,
@@ -33764,7 +89364,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1450,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1450"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1450"
}
],
"type": {
@@ -33777,7 +89377,7 @@
"type": "query",
"queryType": {
"type": "reference",
- "target": 1300,
+ "target": 1323,
"name": "SIGN_OUT_SCOPES",
"package": "@supabase/auth-js"
}
@@ -33785,7 +89385,7 @@
}
},
{
- "id": 871,
+ "id": 894,
"name": "SignUpWithPasswordCredentials",
"variant": "declaration",
"kind": 2097152,
@@ -33795,12 +89395,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 520,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L520"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L520"
}
],
"type": {
"type": "reference",
- "target": 702,
+ "target": 725,
"typeArguments": [
{
"type": "intersection",
@@ -33817,14 +89417,14 @@
{
"type": "reflection",
"declaration": {
- "id": 872,
+ "id": 895,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 873,
+ "id": 896,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -33836,20 +89436,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L522"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 874,
+ "id": 897,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 877,
+ "id": 900,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -33861,7 +89461,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 525,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L525"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L525"
}
],
"type": {
@@ -33870,7 +89470,7 @@
}
},
{
- "id": 878,
+ "id": 901,
"name": "channel",
"variant": "declaration",
"kind": 1024,
@@ -33882,7 +89482,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 526,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L526"
}
],
"type": {
@@ -33900,7 +89500,7 @@
}
},
{
- "id": 876,
+ "id": 899,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -33912,7 +89512,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 524,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L524"
}
],
"type": {
@@ -33921,7 +89521,7 @@
}
},
{
- "id": 875,
+ "id": 898,
"name": "emailRedirectTo",
"variant": "declaration",
"kind": 1024,
@@ -33933,7 +89533,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 523,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L523"
}
],
"type": {
@@ -33945,7 +89545,7 @@
"groups": [
{
"title": "Properties",
- "children": [877, 878, 876, 875]
+ "children": [900, 901, 899, 898]
}
],
"sources": [
@@ -33953,7 +89553,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 522,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L522"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L522"
}
]
}
@@ -33963,7 +89563,7 @@
"groups": [
{
"title": "Properties",
- "children": [873]
+ "children": [896]
}
],
"sources": [
@@ -33971,7 +89571,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 521,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L521"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L521"
}
]
}
@@ -33984,7 +89584,7 @@
}
},
{
- "id": 924,
+ "id": 947,
"name": "SolanaWallet",
"variant": "declaration",
"kind": 2097152,
@@ -33994,20 +89594,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 610,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L610"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L610"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 925,
+ "id": 948,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 930,
+ "id": 953,
"name": "publicKey",
"variant": "declaration",
"kind": 1024,
@@ -34019,7 +89619,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 612,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L612"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L612"
}
],
"type": {
@@ -34028,14 +89628,14 @@
{
"type": "reflection",
"declaration": {
- "id": 931,
+ "id": 954,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 932,
+ "id": 955,
"name": "toBase58",
"variant": "declaration",
"kind": 1024,
@@ -34045,13 +89645,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 613,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 933,
+ "id": 956,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34061,12 +89661,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 613,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L613"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L613"
}
],
"signatures": [
{
- "id": 934,
+ "id": 957,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -34084,7 +89684,7 @@
"groups": [
{
"title": "Properties",
- "children": [932]
+ "children": [955]
}
],
"sources": [
@@ -34092,7 +89692,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 612,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L612"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L612"
}
]
}
@@ -34105,7 +89705,7 @@
}
},
{
- "id": 926,
+ "id": 949,
"name": "signIn",
"variant": "declaration",
"kind": 1024,
@@ -34117,13 +89717,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 927,
+ "id": 950,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34133,19 +89733,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 611,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L611"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L611"
}
],
"signatures": [
{
- "id": 928,
+ "id": 951,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 929,
+ "id": 952,
"name": "inputs",
"variant": "param",
"kind": 32768,
@@ -34209,7 +89809,7 @@
}
},
{
- "id": 935,
+ "id": 958,
"name": "signMessage",
"variant": "declaration",
"kind": 1024,
@@ -34221,13 +89821,13 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 616,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L616"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 936,
+ "id": 959,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -34237,19 +89837,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 616,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L616"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L616"
}
],
"signatures": [
{
- "id": 937,
+ "id": 960,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 938,
+ "id": 961,
"name": "message",
"variant": "param",
"kind": 32768,
@@ -34265,7 +89865,7 @@
}
},
{
- "id": 939,
+ "id": 962,
"name": "encoding",
"variant": "param",
"kind": 32768,
@@ -34325,7 +89925,7 @@
"groups": [
{
"title": "Properties",
- "children": [930, 926, 935]
+ "children": [953, 949, 958]
}
],
"sources": [
@@ -34333,14 +89933,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 610,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L610"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L610"
}
]
}
}
},
{
- "id": 940,
+ "id": 963,
"name": "SolanaWeb3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -34350,7 +89950,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 619,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L619"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L619"
}
],
"type": {
@@ -34359,14 +89959,14 @@
{
"type": "reflection",
"declaration": {
- "id": 941,
+ "id": 964,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 942,
+ "id": 965,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -34376,7 +89976,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 621,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L621"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L621"
}
],
"type": {
@@ -34385,7 +89985,7 @@
}
},
{
- "id": 945,
+ "id": 968,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34397,20 +89997,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 629,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L629"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L629"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 946,
+ "id": 969,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 948,
+ "id": 971,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34430,7 +90030,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 634,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L634"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L634"
}
],
"type": {
@@ -34439,7 +90039,7 @@
}
},
{
- "id": 949,
+ "id": 972,
"name": "signInWithSolana",
"variant": "declaration",
"kind": 1024,
@@ -34451,7 +90051,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 636,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L636"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L636"
}
],
"type": {
@@ -34512,7 +90112,7 @@
}
},
{
- "id": 947,
+ "id": 970,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -34532,7 +90132,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 631,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L631"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L631"
}
],
"type": {
@@ -34544,7 +90144,7 @@
"groups": [
{
"title": "Properties",
- "children": [948, 949, 947]
+ "children": [971, 972, 970]
}
],
"sources": [
@@ -34552,14 +90152,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 629,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L629"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L629"
}
]
}
}
},
{
- "id": 944,
+ "id": 967,
"name": "statement",
"variant": "declaration",
"kind": 1024,
@@ -34579,7 +90179,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 627,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L627"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L627"
}
],
"type": {
@@ -34588,7 +90188,7 @@
}
},
{
- "id": 943,
+ "id": 966,
"name": "wallet",
"variant": "declaration",
"kind": 1024,
@@ -34616,12 +90216,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 624,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L624"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L624"
}
],
"type": {
"type": "reference",
- "target": 924,
+ "target": 947,
"name": "SolanaWallet",
"package": "@supabase/auth-js"
}
@@ -34630,7 +90230,7 @@
"groups": [
{
"title": "Properties",
- "children": [942, 945, 944, 943]
+ "children": [965, 968, 967, 966]
}
],
"sources": [
@@ -34638,7 +90238,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 620,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L620"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L620"
}
]
}
@@ -34646,14 +90246,14 @@
{
"type": "reflection",
"declaration": {
- "id": 950,
+ "id": 973,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 951,
+ "id": 974,
"name": "chain",
"variant": "declaration",
"kind": 1024,
@@ -34663,7 +90263,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 642,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L642"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L642"
}
],
"type": {
@@ -34672,7 +90272,7 @@
}
},
{
- "id": 952,
+ "id": 975,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -34714,7 +90314,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 645,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L645"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L645"
}
],
"type": {
@@ -34723,7 +90323,7 @@
}
},
{
- "id": 954,
+ "id": 977,
"name": "options",
"variant": "declaration",
"kind": 1024,
@@ -34735,20 +90335,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 650,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L650"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 955,
+ "id": 978,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 956,
+ "id": 979,
"name": "captchaToken",
"variant": "declaration",
"kind": 1024,
@@ -34768,7 +90368,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 652,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L652"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L652"
}
],
"type": {
@@ -34780,7 +90380,7 @@
"groups": [
{
"title": "Properties",
- "children": [956]
+ "children": [979]
}
],
"sources": [
@@ -34788,14 +90388,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 650,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L650"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L650"
}
]
}
}
},
{
- "id": 953,
+ "id": 976,
"name": "signature",
"variant": "declaration",
"kind": 1024,
@@ -34813,7 +90413,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 648,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L648"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L648"
}
],
"type": {
@@ -34830,7 +90430,7 @@
"groups": [
{
"title": "Properties",
- "children": [951, 952, 954, 953]
+ "children": [974, 975, 977, 976]
}
],
"sources": [
@@ -34838,7 +90438,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 641,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L641"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L641"
}
]
}
@@ -34847,7 +90447,7 @@
}
},
{
- "id": 760,
+ "id": 783,
"name": "SSOResponse",
"variant": "declaration",
"kind": 2097152,
@@ -34857,24 +90457,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 206,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L206"
}
],
"type": {
"type": "reference",
- "target": 707,
+ "target": 730,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 761,
+ "id": 784,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 762,
+ "id": 785,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -34900,7 +90500,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 214,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L214"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L214"
}
],
"type": {
@@ -34912,7 +90512,7 @@
"groups": [
{
"title": "Properties",
- "children": [762]
+ "children": [785]
}
],
"sources": [
@@ -34920,7 +90520,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 206,
"character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L206"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L206"
}
]
}
@@ -34931,7 +90531,7 @@
}
},
{
- "id": 704,
+ "id": 727,
"name": "StrictOmit",
"variant": "declaration",
"kind": 2097152,
@@ -34949,19 +90549,19 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 131,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L131"
}
],
"typeParameters": [
{
- "id": 705,
+ "id": 728,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {}
},
{
- "id": 706,
+ "id": 729,
"name": "K",
"variant": "typeParam",
"kind": 131072,
@@ -34971,7 +90571,7 @@
"operator": "keyof",
"target": {
"type": "reference",
- "target": 705,
+ "target": 728,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -34988,14 +90588,14 @@
"typeArguments": [
{
"type": "reference",
- "target": 705,
+ "target": 728,
"name": "T",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 706,
+ "target": 729,
"name": "K",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -35006,7 +90606,7 @@
}
},
{
- "id": 1247,
+ "id": 1270,
"name": "SupportedStorage",
"variant": "declaration",
"kind": 2097152,
@@ -35016,7 +90616,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1284,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1284"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1284"
}
],
"type": {
@@ -35073,14 +90673,14 @@
{
"type": "reflection",
"declaration": {
- "id": 1248,
+ "id": 1271,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 1249,
+ "id": 1272,
"name": "isServer",
"variant": "declaration",
"kind": 1024,
@@ -35108,7 +90708,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1294,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1294"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1294"
}
],
"type": {
@@ -35120,7 +90720,7 @@
"groups": [
{
"title": "Properties",
- "children": [1249]
+ "children": [1272]
}
],
"sources": [
@@ -35128,7 +90728,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1286,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1286"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1286"
}
]
}
@@ -35137,7 +90737,209 @@
}
},
{
- "id": 763,
+ "id": 1353,
+ "name": "UpdateOAuthClientParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for updating an existing OAuth client.\nAll fields are optional. Only provided fields will be updated.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1535,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1535"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1354,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1355,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1537,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1537"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1356,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1539,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1539"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1359,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1545,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1545"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1325,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1357,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1541,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1541"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1358,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1543,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1543"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1355, 1356, 1359, 1357, 1358]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/src/lib/types.ts",
+ "line": 1535,
+ "character": 38,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1535"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 786,
"name": "UserResponse",
"variant": "declaration",
"kind": 2097152,
@@ -35147,24 +90949,24 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 217,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L217"
}
],
"type": {
"type": "reference",
- "target": 716,
+ "target": 739,
"typeArguments": [
{
"type": "reflection",
"declaration": {
- "id": 764,
+ "id": 787,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 765,
+ "id": 788,
"name": "user",
"variant": "declaration",
"kind": 1024,
@@ -35174,12 +90976,12 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 218,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L218"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L218"
}
],
"type": {
"type": "reference",
- "target": 810,
+ "target": 833,
"name": "User",
"package": "@supabase/auth-js"
}
@@ -35188,7 +90990,7 @@
"groups": [
{
"title": "Properties",
- "children": [765]
+ "children": [788]
}
],
"sources": [
@@ -35196,7 +90998,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 217,
"character": 56,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L217"
}
]
}
@@ -35207,7 +91009,7 @@
}
},
{
- "id": 976,
+ "id": 999,
"name": "VerifyOtpParams",
"variant": "declaration",
"kind": 2097152,
@@ -35217,7 +91019,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 697,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L697"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L697"
}
],
"type": {
@@ -35225,19 +91027,19 @@
"types": [
{
"type": "reference",
- "target": 977,
+ "target": 1000,
"name": "VerifyMobileOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 985,
+ "target": 1008,
"name": "VerifyEmailOtpParams",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 993,
+ "target": 1016,
"name": "VerifyTokenHashParams",
"package": "@supabase/auth-js"
}
@@ -35245,7 +91047,7 @@
}
},
{
- "id": 698,
+ "id": 721,
"name": "WeakPassword",
"variant": "declaration",
"kind": 2097152,
@@ -35255,20 +91057,20 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 115,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L115"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 699,
+ "id": 722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 701,
+ "id": 724,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -35278,7 +91080,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L117"
}
],
"type": {
@@ -35287,7 +91089,7 @@
}
},
{
- "id": 700,
+ "id": 723,
"name": "reasons",
"variant": "declaration",
"kind": 1024,
@@ -35297,14 +91099,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L116"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 697,
+ "target": 720,
"name": "WeakPasswordReasons",
"package": "@supabase/auth-js"
}
@@ -35314,7 +91116,7 @@
"groups": [
{
"title": "Properties",
- "children": [701, 700]
+ "children": [724, 723]
}
],
"sources": [
@@ -35322,14 +91124,14 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 115,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L115"
}
]
}
}
},
{
- "id": 697,
+ "id": 720,
"name": "WeakPasswordReasons",
"variant": "declaration",
"kind": 2097152,
@@ -35339,7 +91141,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 114,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L114"
}
],
"type": {
@@ -35364,7 +91166,7 @@
}
},
{
- "id": 975,
+ "id": 998,
"name": "Web3Credentials",
"variant": "declaration",
"kind": 2097152,
@@ -35374,7 +91176,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 695,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L695"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L695"
}
],
"type": {
@@ -35382,13 +91184,13 @@
"types": [
{
"type": "reference",
- "target": 940,
+ "target": 963,
"name": "SolanaWeb3Credentials",
"package": "@supabase/auth-js"
},
{
"type": "reference",
- "target": 958,
+ "target": 981,
"name": "EthereumWeb3Credentials",
"package": "@supabase/auth-js"
}
@@ -35396,7 +91198,7 @@
}
},
{
- "id": 637,
+ "id": 660,
"name": "AuthAdminApi",
"variant": "declaration",
"kind": 32,
@@ -35408,7 +91210,7 @@
"fileName": "packages/core/auth-js/src/AuthAdminApi.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/AuthAdminApi.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/AuthAdminApi.ts#L3"
}
],
"type": {
@@ -35423,7 +91225,7 @@
"defaultValue": "GoTrueAdminApi"
},
{
- "id": 638,
+ "id": 661,
"name": "AuthClient",
"variant": "declaration",
"kind": 32,
@@ -35435,14 +91237,14 @@
"fileName": "packages/core/auth-js/src/AuthClient.ts",
"line": 3,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/AuthClient.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/AuthClient.ts#L3"
}
],
"type": {
"type": "query",
"queryType": {
"type": "reference",
- "target": 100,
+ "target": 107,
"name": "default",
"package": "@supabase/auth-js"
}
@@ -35450,7 +91252,7 @@
"defaultValue": "GoTrueClient"
},
{
- "id": 652,
+ "id": 675,
"name": "lockInternals",
"variant": "declaration",
"kind": 32,
@@ -35466,20 +91268,20 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L6"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 653,
+ "id": 676,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 654,
+ "id": 677,
"name": "debug",
"variant": "declaration",
"kind": 1024,
@@ -35493,7 +91295,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L10"
}
],
"type": {
@@ -35506,7 +91308,7 @@
"groups": [
{
"title": "Properties",
- "children": [654]
+ "children": [677]
}
],
"sources": [
@@ -35514,7 +91316,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 6,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L6"
}
]
}
@@ -35522,7 +91324,7 @@
"defaultValue": "..."
},
{
- "id": 1300,
+ "id": 1323,
"name": "SIGN_OUT_SCOPES",
"variant": "declaration",
"kind": 32,
@@ -35534,7 +91336,7 @@
"fileName": "packages/core/auth-js/src/lib/types.ts",
"line": 1449,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/types.ts#L1449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/types.ts#L1449"
}
],
"type": {
@@ -35561,7 +91363,7 @@
"defaultValue": "..."
},
{
- "id": 1361,
+ "id": 1435,
"name": "isAuthApiError",
"variant": "declaration",
"kind": 64,
@@ -35571,12 +91373,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 41,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L41"
}
],
"signatures": [
{
- "id": 1362,
+ "id": 1436,
"name": "isAuthApiError",
"variant": "signature",
"kind": 4096,
@@ -35586,12 +91388,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 41,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L41"
}
],
"parameters": [
{
- "id": 1363,
+ "id": 1437,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35608,7 +91410,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1386,
+ "target": 1460,
"name": "AuthApiError",
"package": "@supabase/auth-js"
}
@@ -35617,7 +91419,7 @@
]
},
{
- "id": 1358,
+ "id": 1432,
"name": "isAuthError",
"variant": "declaration",
"kind": 64,
@@ -35627,12 +91429,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L26"
}
],
"signatures": [
{
- "id": 1359,
+ "id": 1433,
"name": "isAuthError",
"variant": "signature",
"kind": 4096,
@@ -35642,12 +91444,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L26"
}
],
"parameters": [
{
- "id": 1360,
+ "id": 1434,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35664,7 +91466,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1376,
+ "target": 1450,
"name": "AuthError",
"package": "@supabase/auth-js"
}
@@ -35673,7 +91475,7 @@
]
},
{
- "id": 1367,
+ "id": 1441,
"name": "isAuthImplicitGrantRedirectError",
"variant": "declaration",
"kind": 64,
@@ -35683,12 +91485,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 105,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L105"
}
],
"signatures": [
{
- "id": 1368,
+ "id": 1442,
"name": "isAuthImplicitGrantRedirectError",
"variant": "signature",
"kind": 4096,
@@ -35698,12 +91500,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 105,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L105"
}
],
"parameters": [
{
- "id": 1369,
+ "id": 1443,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35720,7 +91522,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1443,
+ "target": 1517,
"name": "AuthImplicitGrantRedirectError",
"package": "@supabase/auth-js"
}
@@ -35729,7 +91531,7 @@
]
},
{
- "id": 1370,
+ "id": 1444,
"name": "isAuthRetryableFetchError",
"variant": "declaration",
"kind": 64,
@@ -35739,12 +91541,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 135,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L135"
}
],
"signatures": [
{
- "id": 1371,
+ "id": 1445,
"name": "isAuthRetryableFetchError",
"variant": "signature",
"kind": 4096,
@@ -35754,12 +91556,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 135,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L135"
}
],
"parameters": [
{
- "id": 1372,
+ "id": 1446,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35776,7 +91578,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1497,
+ "target": 1571,
"name": "AuthRetryableFetchError",
"package": "@supabase/auth-js"
}
@@ -35785,7 +91587,7 @@
]
},
{
- "id": 1364,
+ "id": 1438,
"name": "isAuthSessionMissingError",
"variant": "declaration",
"kind": 64,
@@ -35795,12 +91597,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 72,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L72"
}
],
"signatures": [
{
- "id": 1365,
+ "id": 1439,
"name": "isAuthSessionMissingError",
"variant": "signature",
"kind": 4096,
@@ -35810,12 +91612,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 72,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L72"
}
],
"parameters": [
{
- "id": 1366,
+ "id": 1440,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35832,7 +91634,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1418,
+ "target": 1492,
"name": "AuthSessionMissingError",
"package": "@supabase/auth-js"
}
@@ -35841,7 +91643,7 @@
]
},
{
- "id": 1373,
+ "id": 1447,
"name": "isAuthWeakPasswordError",
"variant": "declaration",
"kind": 64,
@@ -35851,12 +91653,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"signatures": [
{
- "id": 1374,
+ "id": 1448,
"name": "isAuthWeakPasswordError",
"variant": "signature",
"kind": 4096,
@@ -35866,12 +91668,12 @@
"fileName": "packages/core/auth-js/src/lib/errors.ts",
"line": 157,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/errors.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/errors.ts#L157"
}
],
"parameters": [
{
- "id": 1375,
+ "id": 1449,
"name": "error",
"variant": "param",
"kind": 32768,
@@ -35888,7 +91690,7 @@
"asserts": false,
"targetType": {
"type": "reference",
- "target": 1507,
+ "target": 1581,
"name": "AuthWeakPasswordError",
"package": "@supabase/auth-js"
}
@@ -35897,7 +91699,7 @@
]
},
{
- "id": 639,
+ "id": 662,
"name": "navigatorLock",
"variant": "declaration",
"kind": 64,
@@ -35907,12 +91709,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 59,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L59"
}
],
"signatures": [
{
- "id": 640,
+ "id": 663,
"name": "navigatorLock",
"variant": "signature",
"kind": 4096,
@@ -35927,7 +91729,7 @@
"kind": "inline-tag",
"tag": "@link",
"text": "GoTrueClient",
- "target": 100
+ "target": 107
},
{
"kind": "text",
@@ -35972,12 +91774,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 59,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L59"
}
],
"typeParameters": [
{
- "id": 641,
+ "id": 664,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -35986,7 +91788,7 @@
],
"parameters": [
{
- "id": 642,
+ "id": 665,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -36005,7 +91807,7 @@
}
},
{
- "id": 643,
+ "id": 666,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -36032,7 +91834,7 @@
}
},
{
- "id": 644,
+ "id": 667,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -36048,7 +91850,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 645,
+ "id": 668,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -36058,12 +91860,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L62"
}
],
"signatures": [
{
- "id": 646,
+ "id": 669,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -36073,7 +91875,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 62,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L62"
}
],
"type": {
@@ -36085,7 +91887,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 641,
+ "target": 664,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36109,7 +91911,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 641,
+ "target": 664,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36122,7 +91924,7 @@
]
},
{
- "id": 655,
+ "id": 678,
"name": "processLock",
"variant": "declaration",
"kind": 64,
@@ -36132,12 +91934,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 171,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L171"
}
],
"signatures": [
{
- "id": 656,
+ "id": 679,
"name": "processLock",
"variant": "signature",
"kind": 4096,
@@ -36164,12 +91966,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 171,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L171"
}
],
"typeParameters": [
{
- "id": 657,
+ "id": 680,
"name": "R",
"variant": "typeParam",
"kind": 131072,
@@ -36178,7 +91980,7 @@
],
"parameters": [
{
- "id": 658,
+ "id": 681,
"name": "name",
"variant": "param",
"kind": 32768,
@@ -36197,7 +91999,7 @@
}
},
{
- "id": 659,
+ "id": 682,
"name": "acquireTimeout",
"variant": "param",
"kind": 32768,
@@ -36224,7 +92026,7 @@
}
},
{
- "id": 660,
+ "id": 683,
"name": "fn",
"variant": "param",
"kind": 32768,
@@ -36240,7 +92042,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 661,
+ "id": 684,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -36250,12 +92052,12 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 174,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L174"
}
],
"signatures": [
{
- "id": 662,
+ "id": 685,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -36265,7 +92067,7 @@
"fileName": "packages/core/auth-js/src/lib/locks.ts",
"line": 174,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/auth-js/src/lib/locks.ts#L174"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/auth-js/src/lib/locks.ts#L174"
}
],
"type": {
@@ -36277,7 +92079,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 657,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36301,7 +92103,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 657,
+ "target": 680,
"name": "R",
"package": "@supabase/auth-js",
"refersToTypeParameter": true
@@ -36318,57 +92120,42 @@
{
"title": "Classes",
"children": [
- 1386, 1376, 1443, 1434, 1519, 1426, 1470, 1497, 1418, 1396, 1507, 1406, 1, 100, 647
+ 1460, 1450, 1517, 1508, 1593, 1500, 1544, 1571, 1492, 1470, 1581, 1480, 1, 107, 670
]
},
{
"title": "Interfaces",
"children": [
- 842, 777, 1047, 1240, 1342, 1110, 1293, 766, 855, 810, 803, 836, 780, 807, 985, 977, 993
+ 865, 800, 1416, 1070, 1263, 1373, 1133, 1316, 789, 878, 833, 826, 859, 803, 830, 1008,
+ 1000, 1016
]
},
{
"title": "Type Aliases",
"children": [
- 775, 665, 664, 1104, 901, 1230, 1227, 1237, 1234, 1095, 1099, 1094, 1096, 1097, 1098,
- 1272, 1090, 1271, 1273, 1105, 1100, 1091, 1089, 1082, 733, 724, 728, 738, 742, 1253,
- 1321, 997, 957, 958, 793, 792, 1041, 1031, 1050, 1055, 1051, 1062, 1036, 1025, 675,
- 1250, 1274, 1289, 666, 1081, 1080, 1078, 1077, 1079, 1063, 1269, 1268, 1270, 1076, 1064,
- 1075, 1068, 1067, 1069, 1073, 996, 1306, 1302, 1330, 1305, 1329, 1303, 1304, 747, 1261,
- 1254, 702, 663, 707, 716, 1279, 998, 865, 914, 902, 879, 884, 1012, 1265, 1301, 871,
- 924, 940, 760, 704, 1247, 763, 976, 698, 697, 975
+ 798, 688, 687, 1127, 924, 1253, 1250, 1260, 1257, 1118, 1122, 1117, 1119, 1120, 1121,
+ 1295, 1113, 1294, 1296, 1128, 1123, 1114, 1112, 1105, 1412, 1413, 756, 747, 751, 761,
+ 765, 1276, 1345, 1020, 980, 981, 816, 815, 1064, 1054, 1073, 1078, 1074, 1085, 1059,
+ 1048, 698, 1273, 1297, 1312, 689, 1104, 1103, 1101, 1100, 1102, 1086, 1292, 1291, 1293,
+ 1099, 1087, 1098, 1091, 1090, 1092, 1096, 1019, 1396, 1402, 1329, 1325, 1361, 1328,
+ 1360, 1326, 1327, 770, 1284, 1277, 725, 686, 730, 739, 1302, 1021, 888, 937, 925, 902,
+ 907, 1035, 1288, 1324, 894, 947, 963, 783, 727, 1270, 1353, 786, 999, 721, 720, 998
]
},
{
"title": "Variables",
- "children": [637, 638, 652, 1300]
+ "children": [660, 661, 675, 1323]
},
{
"title": "Functions",
- "children": [1361, 1358, 1367, 1370, 1364, 1373, 639, 655]
+ "children": [1435, 1432, 1441, 1444, 1438, 1447, 662, 678]
}
],
"packageName": "@supabase/auth-js",
"readme": [
{
"kind": "text",
- "text": "# "
- },
- {
- "kind": "code",
- "text": "`auth-js`"
- },
- {
- "kind": "text",
- "text": "\n\nAn isomorphic JavaScript client library for the [Supabase Auth](https://github.com/supabase/auth) API.\n\n\n\n[](https://pkg.pr.new/~/supabase/auth-js)\n\n
\n\n## Docs\n\n- Using "
- },
- {
- "kind": "code",
- "text": "`auth-js`"
- },
- {
- "kind": "text",
- "text": ": https://supabase.com/docs/reference/javascript/auth-signup\n- TypeDoc: https://supabase.github.io/supabase-js/auth-js/v2/spec.json\n\n## Quick start\n\nInstall\n\n"
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase Auth JS SDK \n\n An isomorphic JavaScript SDK for the Supabase Auth API. \n\n \n Guides \n ·\n Reference Docs \n ·\n TypeDoc \n
\n\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/auth-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/auth-js)\n\n
\n\n## Quick start\n\nInstall\n\n"
},
{
"kind": "code",
@@ -36392,7 +92179,7 @@
},
{
"kind": "text",
- "text": ": https://supabase.io/docs/reference/javascript/auth-signup\n- "
+ "text": ": https://supabase.com/docs/reference/javascript/auth-signup\n- "
},
{
"kind": "code",
@@ -36400,7 +92187,7 @@
},
{
"kind": "text",
- "text": ": https://supabase.io/docs/reference/javascript/auth-signin\n- "
+ "text": ": https://supabase.com/docs/reference/javascript/auth-signin\n- "
},
{
"kind": "code",
@@ -36408,7 +92195,7 @@
},
{
"kind": "text",
- "text": ": https://supabase.io/docs/reference/javascript/auth-signout\n\n### Custom "
+ "text": ": https://supabase.com/docs/reference/javascript/auth-signout\n\n### Custom "
},
{
"kind": "code",
@@ -36460,7 +92247,7 @@
},
{
"kind": "code",
- "text": "```bash\n# Complete build (from monorepo root)\nnpx nx build auth-js\n\n# Build with watch mode for development\nnpx nx build auth-js --watch\n\n# Individual build targets\nnpx nx build:main auth-js # CommonJS build (dist/main/)\nnpx nx build:module auth-js # ES Modules build (dist/module/)\n\n# Other useful commands\nnpx nx clean auth-js # Clean build artifacts\nnpx nx format auth-js # Format code with Prettier\nnpx nx lint auth-js # Run ESLint\nnpx nx typecheck auth-js # TypeScript type checking\nnpx nx docs auth-js # Generate documentation\n```"
+ "text": "```bash\n# Complete build (from monorepo root)\nnpx nx build auth-js\n\n# Build with watch mode for development\nnpx nx build auth-js --watch\n\n# Individual build targets\nnpx nx build:main auth-js # CommonJS build (dist/main/)\nnpx nx build:module auth-js # ES Modules build (dist/module/)\n\n# Other useful commands\nnpx nx lint auth-js # Run ESLint\nnpx nx typecheck auth-js # TypeScript type checking\nnpx nx docs auth-js # Generate documentation\n```"
},
{
"kind": "text",
@@ -36529,7 +92316,7 @@
},
{
"kind": "text",
- "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Sponsors\n\nWe are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don't exist we build them and open source them ourselves.\n\n[](https://github.com/sponsors/supabase)"
+ "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes."
}
],
"symbolIdMap": {
@@ -36594,15 +92381,15 @@
"qualifiedName": "init"
},
"16": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"17": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"18": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"19": {
@@ -36793,4223 +92580,4431 @@
"sourceFileName": "src/GoTrueAdminApi.ts",
"qualifiedName": "shouldSoftDelete"
},
- "100": {
+ "107": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default"
},
- "102": {
+ "109": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.__constructor"
},
- "103": {
+ "110": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default"
},
- "104": {
+ "111": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "106": {
+ "113": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.admin"
},
- "107": {
+ "114": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.mfa"
},
- "166": {
+ "115": {
+ "sourceFileName": "src/GoTrueClient.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "174": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.initialize"
},
- "167": {
+ "175": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.initialize"
},
- "170": {
+ "178": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInAnonymously"
},
- "171": {
+ "179": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInAnonymously"
},
- "172": {
+ "180": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "173": {
+ "181": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signUp"
},
- "174": {
+ "182": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signUp"
},
- "175": {
+ "183": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "176": {
+ "184": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithPassword"
},
- "177": {
+ "185": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithPassword"
},
- "178": {
+ "186": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "179": {
+ "187": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithOAuth"
},
- "180": {
+ "188": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithOAuth"
},
- "181": {
+ "189": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "182": {
+ "190": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.exchangeCodeForSession"
},
- "183": {
+ "191": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.exchangeCodeForSession"
},
- "184": {
+ "192": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "authCode"
},
- "185": {
+ "193": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithWeb3"
},
- "186": {
+ "194": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithWeb3"
},
- "187": {
+ "195": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "188": {
+ "196": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "189": {
+ "197": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "190": {
+ "198": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "191": {
+ "199": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.session"
},
- "192": {
+ "200": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.user"
},
- "193": {
+ "201": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "194": {
+ "202": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "195": {
+ "203": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "196": {
+ "204": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "197": {
+ "205": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.session"
},
- "198": {
+ "206": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.user"
},
- "199": {
+ "207": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "238": {
+ "246": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithIdToken"
},
- "239": {
+ "247": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithIdToken"
},
- "240": {
+ "248": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "241": {
+ "249": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithOtp"
},
- "242": {
+ "250": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithOtp"
},
- "243": {
+ "251": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "244": {
+ "252": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.verifyOtp"
},
- "245": {
+ "253": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.verifyOtp"
},
- "246": {
+ "254": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "params"
},
- "247": {
+ "255": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithSSO"
},
- "248": {
+ "256": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signInWithSSO"
},
- "249": {
+ "257": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "params"
},
- "250": {
+ "258": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.reauthenticate"
},
- "251": {
+ "259": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.reauthenticate"
},
- "254": {
+ "262": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.resend"
},
- "255": {
+ "263": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.resend"
},
- "256": {
+ "264": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "257": {
+ "265": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getSession"
},
- "258": {
+ "266": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getSession"
},
- "259": {
+ "267": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "260": {
+ "268": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "261": {
+ "269": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "262": {
+ "270": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.session"
},
- "263": {
+ "271": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "264": {
+ "272": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "265": {
+ "273": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "266": {
+ "274": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "267": {
+ "275": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.session"
},
- "268": {
+ "276": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "269": {
+ "277": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "270": {
+ "278": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "271": {
+ "279": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "272": {
+ "280": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.session"
},
- "273": {
+ "281": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "320": {
+ "328": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getUser"
},
- "321": {
+ "329": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getUser"
},
- "322": {
+ "330": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "326": {
+ "334": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.updateUser"
},
- "327": {
+ "335": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.updateUser"
},
- "328": {
+ "336": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "attributes"
},
- "329": {
+ "337": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "330": {
+ "338": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "331": {
+ "339": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.emailRedirectTo"
},
- "338": {
+ "346": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.setSession"
},
- "339": {
+ "347": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.setSession"
},
- "340": {
+ "348": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "currentSession"
},
- "341": {
+ "349": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "342": {
+ "350": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.access_token"
},
- "343": {
+ "351": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.refresh_token"
},
- "350": {
+ "358": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.refreshSession"
},
- "351": {
+ "359": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.refreshSession"
},
- "352": {
+ "360": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "currentSession"
},
- "353": {
+ "361": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "354": {
+ "362": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.refresh_token"
},
- "391": {
+ "399": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signOut"
},
- "392": {
+ "400": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.signOut"
},
- "393": {
+ "401": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "394": {
+ "402": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "395": {
+ "403": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "401": {
+ "409": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.onAuthStateChange"
},
- "402": {
+ "410": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.onAuthStateChange"
},
- "403": {
+ "411": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "callback"
},
- "404": {
+ "412": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "405": {
+ "413": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "406": {
+ "414": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "event"
},
- "407": {
+ "415": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "session"
},
- "408": {
+ "416": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "409": {
+ "417": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "410": {
+ "418": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "411": {
+ "419": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.subscription"
},
- "412": {
+ "420": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.onAuthStateChange"
},
- "413": {
+ "421": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "callback"
},
- "414": {
+ "422": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "415": {
+ "423": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "416": {
+ "424": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "event"
},
- "417": {
+ "425": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "session"
},
- "418": {
+ "426": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "419": {
+ "427": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "420": {
+ "428": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "421": {
+ "429": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.subscription"
},
- "425": {
+ "433": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.resetPasswordForEmail"
},
- "426": {
+ "434": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.resetPasswordForEmail"
},
- "427": {
+ "435": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "email"
},
- "428": {
+ "436": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "429": {
+ "437": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "430": {
+ "438": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.redirectTo"
},
- "431": {
+ "439": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.captchaToken"
},
- "432": {
+ "440": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "433": {
+ "441": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "434": {
+ "442": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "435": {
+ "443": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "436": {
+ "444": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "437": {
+ "445": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "438": {
+ "446": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "439": {
+ "447": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getUserIdentities"
},
- "440": {
+ "448": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getUserIdentities"
},
- "441": {
+ "449": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "442": {
+ "450": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "443": {
+ "451": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "444": {
+ "452": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.identities"
},
- "445": {
+ "453": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "446": {
+ "454": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "447": {
+ "455": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "448": {
+ "456": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "449": {
+ "457": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.linkIdentity"
},
- "450": {
+ "458": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.linkIdentity"
},
- "451": {
+ "459": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "452": {
+ "460": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.linkIdentity"
},
- "453": {
+ "461": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "credentials"
},
- "460": {
+ "468": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.unlinkIdentity"
},
- "461": {
+ "469": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.unlinkIdentity"
},
- "462": {
+ "470": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "identity"
},
- "463": {
+ "471": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "464": {
+ "472": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "465": {
+ "473": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "466": {
+ "474": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "467": {
+ "475": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "468": {
+ "476": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "469": {
+ "477": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "515": {
+ "523": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.startAutoRefresh"
},
- "516": {
+ "524": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.startAutoRefresh"
},
- "517": {
+ "525": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "518": {
+ "526": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.stopAutoRefresh"
},
- "614": {
+ "637": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "615": {
+ "638": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "default.getClaims"
},
- "616": {
+ "639": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "jwt"
},
- "617": {
+ "640": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "options"
},
- "618": {
+ "641": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "619": {
+ "642": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "620": {
+ "643": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.allowExpired"
},
- "621": {
+ "644": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.jwks"
},
- "622": {
+ "645": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "623": {
+ "646": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.keys"
},
- "624": {
+ "647": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "625": {
+ "648": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "626": {
+ "649": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "627": {
+ "650": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.claims"
},
- "628": {
+ "651": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.header"
},
- "629": {
+ "652": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.signature"
},
- "630": {
+ "653": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "631": {
+ "654": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "632": {
+ "655": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "633": {
+ "656": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "634": {
+ "657": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type"
},
- "635": {
+ "658": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.data"
},
- "636": {
+ "659": {
"sourceFileName": "src/GoTrueClient.ts",
"qualifiedName": "__type.error"
},
- "637": {
+ "660": {
"sourceFileName": "src/AuthAdminApi.ts",
"qualifiedName": "AuthAdminApi"
},
- "638": {
+ "661": {
"sourceFileName": "src/AuthClient.ts",
"qualifiedName": "AuthClient"
},
- "639": {
+ "662": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "640": {
+ "663": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "navigatorLock"
},
- "641": {
+ "664": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "642": {
+ "665": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "643": {
+ "666": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "644": {
+ "667": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "645": {
+ "668": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "646": {
+ "669": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "647": {
+ "670": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "648": {
+ "671": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.__constructor"
},
- "649": {
+ "672": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "NavigatorLockAcquireTimeoutError"
},
- "650": {
+ "673": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "message"
},
- "651": {
+ "674": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
},
- "652": {
+ "675": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "internals"
},
- "653": {
+ "676": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object"
},
- "654": {
+ "677": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__object.debug"
},
- "655": {
+ "678": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "656": {
+ "679": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "processLock"
},
- "657": {
+ "680": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "R"
},
- "658": {
+ "681": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "name"
},
- "659": {
+ "682": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "acquireTimeout"
},
- "660": {
+ "683": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "fn"
},
- "661": {
+ "684": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "662": {
+ "685": {
"sourceFileName": "src/lib/locks.ts",
"qualifiedName": "__type"
},
- "663": {
+ "686": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Provider"
},
- "664": {
+ "687": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEventMFA"
},
- "665": {
+ "688": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthChangeEvent"
},
- "666": {
+ "689": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "LockFunc"
},
- "667": {
+ "690": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "668": {
+ "691": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "669": {
+ "692": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "name"
},
- "670": {
+ "693": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "acquireTimeout"
},
- "671": {
+ "694": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "fn"
},
- "672": {
+ "695": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "673": {
+ "696": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "674": {
+ "697": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "R"
},
- "675": {
+ "698": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueClientOptions"
},
- "676": {
+ "699": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "677": {
+ "700": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "678": {
+ "701": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.headers"
},
- "679": {
+ "702": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "680": {
+ "703": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "682": {
+ "705": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storageKey"
},
- "683": {
+ "706": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.detectSessionInUrl"
},
- "684": {
+ "707": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.autoRefreshToken"
},
- "685": {
+ "708": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.persistSession"
},
- "686": {
+ "709": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.storage"
},
- "687": {
+ "710": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userStorage"
},
- "688": {
+ "711": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.fetch"
},
- "689": {
+ "712": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.flowType"
},
- "690": {
+ "713": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.debug"
},
- "691": {
+ "714": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "692": {
+ "715": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "693": {
+ "716": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "message"
},
- "694": {
+ "717": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "args"
},
- "695": {
+ "718": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.lock"
},
- "696": {
+ "719": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.hasCustomAuthorizationHeader"
},
- "697": {
+ "720": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPasswordReasons"
},
- "698": {
+ "721": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "WeakPassword"
},
- "699": {
+ "722": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "700": {
+ "723": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.reasons"
},
- "701": {
+ "724": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "702": {
+ "725": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Prettify"
},
- "703": {
+ "726": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "704": {
+ "727": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "StrictOmit"
},
- "705": {
+ "728": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "706": {
+ "729": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "K"
},
- "707": {
+ "730": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResult"
},
- "708": {
+ "731": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "709": {
+ "732": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "710": {
+ "733": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "711": {
+ "734": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "712": {
+ "735": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "713": {
+ "736": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "714": {
+ "737": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "715": {
+ "738": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "ErrorType"
},
- "716": {
+ "739": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequestResultSafeDestructure"
},
- "717": {
+ "740": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "718": {
+ "741": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "719": {
+ "742": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "720": {
+ "743": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "721": {
+ "744": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "722": {
+ "745": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "723": {
+ "746": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "724": {
+ "747": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponse"
},
- "725": {
+ "748": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "726": {
+ "749": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "727": {
+ "750": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "728": {
+ "751": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthResponsePassword"
},
- "729": {
+ "752": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "730": {
+ "753": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "731": {
+ "754": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "732": {
+ "755": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weak_password"
},
- "733": {
+ "756": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthOtpResponse"
},
- "734": {
+ "757": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "735": {
+ "758": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "736": {
+ "759": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "737": {
+ "760": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.messageId"
},
- "738": {
+ "761": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponse"
},
- "739": {
+ "762": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "740": {
+ "763": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "741": {
+ "764": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "742": {
+ "765": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthTokenResponsePassword"
},
- "743": {
+ "766": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "744": {
+ "767": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "745": {
+ "768": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session"
},
- "746": {
+ "769": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.weakPassword"
},
- "747": {
+ "770": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthResponse"
},
- "748": {
+ "771": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "749": {
+ "772": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "750": {
+ "773": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "751": {
+ "774": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "752": {
+ "775": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "753": {
+ "776": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "754": {
+ "777": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "755": {
+ "778": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "756": {
+ "779": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "757": {
+ "780": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "758": {
+ "781": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "759": {
+ "782": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "760": {
+ "783": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SSOResponse"
},
- "761": {
+ "784": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "762": {
+ "785": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "763": {
+ "786": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserResponse"
},
- "764": {
+ "787": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "765": {
+ "788": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "766": {
+ "789": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session"
},
- "767": {
+ "790": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_token"
},
- "768": {
+ "791": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.provider_refresh_token"
},
- "769": {
+ "792": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.access_token"
},
- "770": {
+ "793": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.refresh_token"
},
- "771": {
+ "794": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_in"
},
- "772": {
+ "795": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.expires_at"
},
- "773": {
+ "796": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.token_type"
},
- "774": {
+ "797": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Session.user"
},
- "775": {
+ "798": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMRMethod"
},
- "776": {
+ "799": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "777": {
+ "800": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry"
},
- "778": {
+ "801": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.method"
},
- "779": {
+ "802": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AMREntry.timestamp"
},
- "780": {
+ "803": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity"
},
- "781": {
+ "804": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.id"
},
- "782": {
+ "805": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.user_id"
},
- "783": {
+ "806": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_data"
},
- "784": {
+ "807": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "785": {
+ "808": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "787": {
+ "810": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.identity_id"
},
- "788": {
+ "811": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.provider"
},
- "789": {
+ "812": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.created_at"
},
- "790": {
+ "813": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.last_sign_in_at"
},
- "791": {
+ "814": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserIdentity.updated_at"
},
- "792": {
+ "815": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "FactorType"
},
- "793": {
+ "816": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Factor"
},
- "794": {
+ "817": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "795": {
+ "818": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "796": {
+ "819": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.friendly_name"
},
- "797": {
+ "820": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factor_type"
},
- "798": {
+ "821": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.status"
},
- "799": {
+ "822": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.created_at"
},
- "800": {
+ "823": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.updated_at"
},
- "801": {
+ "824": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Type"
},
- "802": {
+ "825": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Status"
},
- "803": {
+ "826": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata"
},
- "804": {
+ "827": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.provider"
},
- "805": {
+ "828": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAppMetadata.__index"
},
- "807": {
+ "830": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata"
},
- "808": {
+ "831": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserMetadata.__index"
},
- "810": {
+ "833": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User"
},
- "811": {
+ "834": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.id"
},
- "812": {
+ "835": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.app_metadata"
},
- "813": {
+ "836": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.user_metadata"
},
- "814": {
+ "837": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.aud"
},
- "815": {
+ "838": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmation_sent_at"
},
- "816": {
+ "839": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.recovery_sent_at"
},
- "817": {
+ "840": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_change_sent_at"
},
- "818": {
+ "841": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_email"
},
- "819": {
+ "842": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.new_phone"
},
- "820": {
+ "843": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.invited_at"
},
- "821": {
+ "844": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.action_link"
},
- "822": {
+ "845": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email"
},
- "823": {
+ "846": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone"
},
- "824": {
+ "847": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.created_at"
},
- "825": {
+ "848": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.confirmed_at"
},
- "826": {
+ "849": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.email_confirmed_at"
},
- "827": {
+ "850": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.phone_confirmed_at"
},
- "828": {
+ "851": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.last_sign_in_at"
},
- "829": {
+ "852": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.role"
},
- "830": {
+ "853": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.updated_at"
},
- "831": {
+ "854": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.identities"
},
- "832": {
+ "855": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_anonymous"
},
- "833": {
+ "856": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.is_sso_user"
},
- "834": {
+ "857": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.factors"
},
- "835": {
+ "858": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "User.deleted_at"
},
- "836": {
+ "859": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes"
},
- "837": {
+ "860": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.email"
},
- "838": {
+ "861": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.phone"
},
- "839": {
+ "862": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.password"
},
- "840": {
+ "863": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.nonce"
},
- "841": {
+ "864": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "UserAttributes.data"
},
- "842": {
+ "865": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes"
},
- "843": {
+ "866": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.user_metadata"
},
- "844": {
+ "867": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.app_metadata"
},
- "845": {
+ "868": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.email_confirm"
},
- "846": {
+ "869": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.phone_confirm"
},
- "847": {
+ "870": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.ban_duration"
},
- "848": {
+ "871": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.role"
},
- "849": {
+ "872": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.password_hash"
},
- "850": {
+ "873": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AdminUserAttributes.id"
},
- "851": {
+ "874": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "nonce"
},
- "852": {
+ "875": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "email"
+ "qualifiedName": "phone"
},
- "853": {
+ "876": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "phone"
+ "qualifiedName": "email"
},
- "854": {
+ "877": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "password"
},
- "855": {
+ "878": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription"
},
- "856": {
+ "879": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.id"
},
- "857": {
+ "880": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.callback"
},
- "858": {
+ "881": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "859": {
+ "882": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "860": {
+ "883": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "event"
},
- "861": {
+ "884": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "session"
},
- "862": {
+ "885": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Subscription.unsubscribe"
},
- "863": {
+ "886": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "864": {
+ "887": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "865": {
+ "888": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInAnonymouslyCredentials"
},
- "866": {
+ "889": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "867": {
+ "890": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "868": {
+ "891": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "869": {
+ "892": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "870": {
+ "893": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "871": {
+ "894": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignUpWithPasswordCredentials"
},
- "872": {
+ "895": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "873": {
+ "896": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "874": {
+ "897": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "875": {
+ "898": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.emailRedirectTo"
},
- "876": {
+ "899": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "877": {
+ "900": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "878": {
+ "901": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.channel"
},
- "879": {
+ "902": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInWithPasswordCredentials"
},
- "880": {
+ "903": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "881": {
+ "904": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "882": {
+ "905": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "883": {
+ "906": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "884": {
+ "907": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInWithPasswordlessCredentials"
},
- "885": {
+ "908": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "886": {
+ "909": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "887": {
+ "910": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "888": {
+ "911": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "889": {
+ "912": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.emailRedirectTo"
},
- "890": {
+ "913": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.shouldCreateUser"
},
- "891": {
+ "914": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "892": {
+ "915": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "893": {
+ "916": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "894": {
+ "917": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.phone"
},
- "895": {
+ "918": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "896": {
+ "919": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "897": {
+ "920": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.shouldCreateUser"
},
- "898": {
+ "921": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.data"
},
- "899": {
+ "922": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "900": {
+ "923": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.channel"
},
- "901": {
+ "924": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthFlowType"
},
- "902": {
+ "925": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInWithOAuthCredentials"
},
- "903": {
+ "926": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "904": {
+ "927": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "905": {
+ "928": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "906": {
+ "929": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "907": {
+ "930": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirectTo"
},
- "908": {
+ "931": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.scopes"
},
- "909": {
+ "932": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.queryParams"
},
- "910": {
+ "933": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "911": {
+ "934": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "913": {
+ "936": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.skipBrowserRedirect"
},
- "914": {
+ "937": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInWithIdTokenCredentials"
},
- "915": {
+ "938": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "916": {
+ "939": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.provider"
},
- "917": {
+ "940": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "918": {
+ "941": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.token"
},
- "919": {
+ "942": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.access_token"
},
- "920": {
+ "943": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.nonce"
},
- "921": {
+ "944": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "922": {
+ "945": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "923": {
+ "946": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "924": {
+ "947": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SolanaWallet"
},
- "925": {
+ "948": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "926": {
+ "949": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signIn"
},
- "927": {
+ "950": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "928": {
+ "951": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "929": {
+ "952": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "inputs"
},
- "930": {
+ "953": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.publicKey"
},
- "931": {
+ "954": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "932": {
+ "955": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.toBase58"
},
- "933": {
+ "956": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "934": {
+ "957": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "935": {
+ "958": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signMessage"
},
- "936": {
+ "959": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "937": {
+ "960": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "938": {
+ "961": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "message"
},
- "939": {
+ "962": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "encoding"
},
- "940": {
+ "963": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SolanaWeb3Credentials"
},
- "941": {
+ "964": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "942": {
+ "965": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.chain"
},
- "943": {
+ "966": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.wallet"
},
- "944": {
+ "967": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.statement"
},
- "945": {
+ "968": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "946": {
+ "969": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "947": {
+ "970": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "948": {
+ "971": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "949": {
+ "972": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signInWithSolana"
},
- "950": {
+ "973": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "951": {
+ "974": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.chain"
},
- "952": {
+ "975": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "953": {
+ "976": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signature"
},
- "954": {
+ "977": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "955": {
+ "978": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "956": {
+ "979": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "957": {
+ "980": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "EthereumWallet"
},
- "958": {
+ "981": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "EthereumWeb3Credentials"
},
- "959": {
+ "982": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "960": {
+ "983": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.chain"
},
- "961": {
+ "984": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.wallet"
},
- "962": {
+ "985": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.statement"
},
- "963": {
+ "986": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "964": {
+ "987": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "965": {
+ "988": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.url"
},
- "966": {
+ "989": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "967": {
+ "990": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signInWithEthereum"
},
- "968": {
+ "991": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "969": {
+ "992": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.chain"
},
- "970": {
+ "993": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.message"
},
- "971": {
+ "994": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.signature"
},
- "972": {
+ "995": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "973": {
+ "996": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "974": {
+ "997": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "975": {
+ "998": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Web3Credentials"
},
- "976": {
+ "999": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyOtpParams"
},
- "977": {
+ "1000": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyMobileOtpParams"
},
- "978": {
+ "1001": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyMobileOtpParams.phone"
},
- "979": {
+ "1002": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyMobileOtpParams.token"
},
- "980": {
+ "1003": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyMobileOtpParams.type"
},
- "981": {
+ "1004": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyMobileOtpParams.options"
},
- "982": {
+ "1005": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "983": {
+ "1006": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirectTo"
},
- "984": {
+ "1007": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "985": {
+ "1008": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyEmailOtpParams"
},
- "986": {
+ "1009": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyEmailOtpParams.email"
},
- "987": {
+ "1010": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyEmailOtpParams.token"
},
- "988": {
+ "1011": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyEmailOtpParams.type"
},
- "989": {
+ "1012": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyEmailOtpParams.options"
},
- "990": {
+ "1013": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "991": {
+ "1014": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirectTo"
},
- "992": {
+ "1015": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "993": {
+ "1016": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyTokenHashParams"
},
- "994": {
+ "1017": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyTokenHashParams.token_hash"
},
- "995": {
+ "1018": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "VerifyTokenHashParams.type"
},
- "996": {
+ "1019": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MobileOtpType"
},
- "997": {
+ "1020": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "EmailOtpType"
},
- "998": {
+ "1021": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "ResendParams"
},
- "999": {
+ "1022": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1000": {
+ "1023": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1001": {
+ "1024": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "1002": {
+ "1025": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1003": {
+ "1026": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1004": {
+ "1027": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.emailRedirectTo"
},
- "1005": {
+ "1028": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "1006": {
+ "1029": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1007": {
+ "1030": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1008": {
+ "1031": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.phone"
},
- "1009": {
+ "1032": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1010": {
+ "1033": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1011": {
+ "1034": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "1012": {
+ "1035": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignInWithSSO"
},
- "1013": {
+ "1036": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1014": {
+ "1037": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.providerId"
},
- "1015": {
+ "1038": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1016": {
+ "1039": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1017": {
+ "1040": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirectTo"
},
- "1018": {
+ "1041": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "1019": {
+ "1042": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1020": {
+ "1043": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.domain"
},
- "1021": {
+ "1044": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1022": {
+ "1045": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1023": {
+ "1046": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirectTo"
},
- "1024": {
+ "1047": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.captchaToken"
},
- "1025": {
+ "1048": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateSignupLinkParams"
},
- "1026": {
+ "1049": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1027": {
+ "1050": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1028": {
+ "1051": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "1029": {
+ "1052": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.password"
},
- "1030": {
+ "1053": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1031": {
+ "1054": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateInviteOrMagiclinkParams"
},
- "1032": {
+ "1055": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1033": {
+ "1056": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1034": {
+ "1057": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "1035": {
+ "1058": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1036": {
+ "1059": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateRecoveryLinkParams"
},
- "1037": {
+ "1060": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1038": {
+ "1061": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1039": {
+ "1062": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "1040": {
+ "1063": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1041": {
+ "1064": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateEmailChangeLinkParams"
},
- "1042": {
+ "1065": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1043": {
+ "1066": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1044": {
+ "1067": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email"
},
- "1045": {
+ "1068": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.newEmail"
},
- "1046": {
+ "1069": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.options"
},
- "1047": {
+ "1070": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkOptions"
},
- "1048": {
+ "1071": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkOptions.data"
},
- "1049": {
+ "1072": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkOptions.redirectTo"
},
- "1050": {
+ "1073": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkParams"
},
- "1051": {
+ "1074": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkResponse"
},
- "1052": {
+ "1075": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1053": {
+ "1076": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.properties"
},
- "1054": {
+ "1077": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "1055": {
+ "1078": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkProperties"
},
- "1056": {
+ "1079": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1057": {
+ "1080": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.action_link"
},
- "1058": {
+ "1081": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.email_otp"
},
- "1059": {
+ "1082": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.hashed_token"
},
- "1060": {
+ "1083": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.redirect_to"
},
- "1061": {
+ "1084": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.verification_type"
},
- "1062": {
+ "1085": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GenerateLinkType"
},
- "1063": {
+ "1086": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollParams"
},
- "1064": {
+ "1087": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAUnenrollParams"
},
- "1065": {
+ "1088": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1066": {
+ "1089": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factorId"
},
- "1067": {
+ "1090": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAVerifyTOTPParams"
},
- "1068": {
+ "1091": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAVerifyPhoneParams"
},
- "1069": {
+ "1092": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAVerifyWebauthnParamFields"
},
- "1070": {
+ "1093": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1071": {
+ "1094": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.webauthn"
},
- "1072": {
+ "1095": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "1073": {
+ "1096": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAVerifyWebauthnParams"
},
- "1074": {
+ "1097": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "1075": {
+ "1098": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAVerifyParams"
},
- "1076": {
+ "1099": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFATOTPChannel"
},
- "1077": {
+ "1100": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAChallengeTOTPParams"
},
- "1078": {
+ "1101": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAChallengePhoneParams"
},
- "1079": {
+ "1102": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAChallengeWebauthnParams"
},
- "1080": {
+ "1103": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAChallengeParams"
},
- "1081": {
+ "1104": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAChallengeAndVerifyParams"
},
- "1082": {
+ "1105": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAVerifyResponseData"
},
- "1083": {
+ "1106": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1084": {
+ "1107": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.access_token"
},
- "1085": {
+ "1108": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.token_type"
},
- "1086": {
+ "1109": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.expires_in"
},
- "1087": {
+ "1110": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.refresh_token"
},
- "1088": {
+ "1111": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.user"
},
- "1089": {
+ "1112": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAVerifyResponse"
},
- "1090": {
+ "1113": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollResponse"
},
- "1091": {
+ "1114": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAUnenrollResponse"
},
- "1092": {
+ "1115": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1093": {
+ "1116": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "1094": {
+ "1117": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengeTOTPResponse"
},
- "1095": {
+ "1118": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengePhoneResponse"
},
- "1096": {
+ "1119": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengeWebauthnResponse"
},
- "1097": {
+ "1120": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
},
- "1098": {
+ "1121": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
},
- "1099": {
+ "1122": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAChallengeResponse"
},
- "1100": {
+ "1123": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAListFactorsResponse"
},
- "1101": {
+ "1124": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1102": {
+ "1125": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.all"
},
- "1103": {
+ "1126": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "T"
},
- "1104": {
+ "1127": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthenticatorAssuranceLevels"
},
- "1105": {
+ "1128": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
},
- "1106": {
+ "1129": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1107": {
+ "1130": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.currentLevel"
},
- "1108": {
+ "1131": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.nextLevel"
},
- "1109": {
+ "1132": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.currentAuthenticationMethods"
},
- "1110": {
+ "1133": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi"
},
- "1111": {
+ "1134": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.enroll"
},
- "1112": {
+ "1135": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.enroll"
},
- "1113": {
+ "1136": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1114": {
+ "1137": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1115": {
+ "1138": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorType"
},
- "1116": {
+ "1139": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "friendlyName"
},
- "1117": {
+ "1140": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "issuer"
},
- "1118": {
+ "1141": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.enroll"
},
- "1119": {
+ "1142": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1120": {
+ "1143": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1121": {
+ "1144": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorType"
},
- "1122": {
+ "1145": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "friendlyName"
},
- "1123": {
+ "1146": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "phone"
},
- "1124": {
+ "1147": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.enroll"
},
- "1125": {
+ "1148": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1126": {
+ "1149": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1127": {
+ "1150": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorType"
},
- "1128": {
+ "1151": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "friendlyName"
},
- "1129": {
+ "1152": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.enroll"
},
- "1130": {
+ "1153": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1131": {
+ "1154": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challenge"
},
- "1132": {
+ "1155": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challenge"
},
- "1133": {
+ "1156": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1134": {
+ "1157": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1135": {
+ "1158": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1136": {
+ "1159": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1137": {
+ "1160": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1138": {
+ "1161": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1139": {
+ "1162": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1140": {
+ "1163": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1141": {
+ "1164": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1142": {
+ "1165": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "id"
},
- "1143": {
+ "1166": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "type"
},
- "1144": {
+ "1167": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "expires_at"
},
- "1145": {
+ "1168": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1146": {
+ "1169": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challenge"
},
- "1147": {
+ "1170": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1148": {
+ "1171": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1149": {
+ "1172": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1150": {
+ "1173": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "channel"
},
- "1151": {
+ "1174": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1152": {
+ "1175": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1153": {
+ "1176": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1154": {
+ "1177": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1155": {
+ "1178": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1156": {
+ "1179": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1157": {
+ "1180": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "id"
},
- "1158": {
+ "1181": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "type"
},
- "1159": {
+ "1182": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "expires_at"
},
- "1160": {
+ "1183": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1161": {
+ "1184": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challenge"
},
- "1162": {
+ "1185": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1163": {
+ "1186": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1164": {
+ "1187": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1165": {
+ "1188": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "webauthn"
},
- "1166": {
+ "1189": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1167": {
+ "1190": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.rpId"
},
- "1168": {
+ "1191": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.rpOrigins"
},
- "1169": {
+ "1192": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1170": {
+ "1193": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1171": {
+ "1194": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1172": {
+ "1195": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1173": {
+ "1196": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "data"
},
- "1174": {
+ "1197": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1175": {
+ "1198": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "id"
},
- "1176": {
+ "1199": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "type"
},
- "1177": {
+ "1200": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "expires_at"
},
- "1178": {
+ "1201": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "webauthn"
},
- "1179": {
+ "1202": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1180": {
+ "1203": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1181": {
+ "1204": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.credential_options"
},
- "1182": {
+ "1205": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1183": {
+ "1206": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.publicKey"
},
- "1184": {
+ "1207": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1185": {
+ "1208": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.type"
},
- "1186": {
+ "1209": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.credential_options"
},
- "1187": {
+ "1210": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1188": {
+ "1211": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.publicKey"
},
- "1189": {
+ "1212": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "error"
},
- "1190": {
+ "1213": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challenge"
},
- "1191": {
+ "1214": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1192": {
+ "1215": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.verify"
},
- "1193": {
+ "1216": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.verify"
},
- "1194": {
+ "1217": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1195": {
+ "1218": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1196": {
+ "1219": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1197": {
+ "1220": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "challengeId"
},
- "1198": {
+ "1221": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "code"
},
- "1199": {
+ "1222": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.verify"
},
- "1200": {
+ "1223": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1201": {
+ "1224": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1202": {
+ "1225": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1203": {
+ "1226": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "challengeId"
},
- "1204": {
+ "1227": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "code"
},
- "1205": {
+ "1228": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.verify"
},
- "1206": {
+ "1229": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1207": {
+ "1230": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1208": {
+ "1231": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1209": {
+ "1232": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "challengeId"
},
- "1210": {
+ "1233": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "webauthn"
},
- "1211": {
+ "1234": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.verify"
},
- "1212": {
+ "1235": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1213": {
+ "1236": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.unenroll"
},
- "1214": {
+ "1237": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.unenroll"
},
- "1215": {
+ "1238": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1216": {
+ "1239": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
- "1217": {
+ "1240": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.challengeAndVerify"
},
- "1218": {
+ "1241": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1219": {
+ "1242": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1220": {
+ "1243": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "factorId"
},
- "1221": {
+ "1244": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "code"
},
- "1222": {
+ "1245": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.listFactors"
},
- "1223": {
+ "1246": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.listFactors"
},
- "1224": {
+ "1247": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
- "1225": {
+ "1248": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
},
- "1226": {
+ "1249": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueMFAApi.webauthn"
},
- "1227": {
+ "1250": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAAdminDeleteFactorResponse"
},
- "1228": {
+ "1251": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1229": {
+ "1252": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "1230": {
+ "1253": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAAdminDeleteFactorParams"
},
- "1231": {
+ "1254": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1232": {
+ "1255": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.id"
},
- "1233": {
+ "1256": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userId"
},
- "1234": {
+ "1257": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAAdminListFactorsResponse"
},
- "1235": {
+ "1258": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1236": {
+ "1259": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.factors"
},
- "1237": {
+ "1260": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAAdminListFactorsParams"
},
- "1238": {
+ "1261": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1239": {
+ "1262": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.userId"
},
- "1240": {
+ "1263": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueAdminMFAApi"
},
- "1241": {
+ "1264": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
- "1242": {
+ "1265": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueAdminMFAApi.listFactors"
},
- "1243": {
+ "1266": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1244": {
+ "1267": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
- "1245": {
+ "1268": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
},
- "1246": {
+ "1269": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "params"
},
- "1247": {
+ "1270": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SupportedStorage"
},
- "1248": {
+ "1271": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1249": {
+ "1272": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.isServer"
},
- "1250": {
+ "1273": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "InitializeResult"
},
- "1251": {
+ "1274": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1252": {
+ "1275": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.error"
},
- "1253": {
+ "1276": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "CallRefreshTokenResult"
},
- "1254": {
+ "1277": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "Pagination"
},
- "1255": {
+ "1278": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1256": {
+ "1279": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.nextPage"
},
- "1257": {
+ "1280": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.lastPage"
},
- "1258": {
+ "1281": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.total"
},
- "1259": {
+ "1282": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1261": {
+ "1284": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "PageParams"
},
- "1262": {
+ "1285": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1263": {
+ "1286": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.page"
},
- "1264": {
+ "1287": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.perPage"
},
- "1265": {
+ "1288": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignOut"
},
- "1266": {
+ "1289": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1267": {
+ "1290": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.scope"
},
- "1268": {
+ "1291": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollTOTPParams"
},
- "1269": {
+ "1292": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollPhoneParams"
},
- "1270": {
+ "1293": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "MFAEnrollWebauthnParams"
},
- "1271": {
+ "1294": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollTOTPResponse"
},
- "1272": {
+ "1295": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollPhoneResponse"
},
- "1273": {
+ "1296": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "AuthMFAEnrollWebauthnResponse"
},
- "1274": {
+ "1297": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtHeader"
},
- "1275": {
+ "1298": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1276": {
+ "1299": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.alg"
},
- "1277": {
+ "1300": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.kid"
},
- "1278": {
+ "1301": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.typ"
},
- "1279": {
+ "1302": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "RequiredClaims"
},
- "1280": {
+ "1303": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1281": {
+ "1304": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iss"
},
- "1282": {
+ "1305": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.sub"
},
- "1283": {
+ "1306": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aud"
},
- "1284": {
+ "1307": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.exp"
},
- "1285": {
+ "1308": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.iat"
},
- "1286": {
+ "1309": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.role"
},
- "1287": {
+ "1310": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.aal"
},
- "1288": {
+ "1311": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.session_id"
},
- "1289": {
+ "1312": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JwtPayload"
},
- "1290": {
+ "1313": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1291": {
+ "1314": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.__index"
},
- "1293": {
+ "1316": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK"
},
- "1294": {
+ "1317": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kty"
},
- "1295": {
+ "1318": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.key_ops"
},
- "1296": {
+ "1319": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.alg"
},
- "1297": {
+ "1320": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.kid"
},
- "1298": {
+ "1321": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "JWK.__index"
},
- "1300": {
+ "1323": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SIGN_OUT_SCOPES"
},
- "1301": {
+ "1324": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "SignOutScope"
},
- "1302": {
+ "1325": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthClientGrantType"
},
- "1303": {
+ "1326": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthClientResponseType"
},
- "1304": {
+ "1327": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthClientType"
},
- "1305": {
+ "1328": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthClientRegistrationType"
},
- "1306": {
+ "1329": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "OAuthClient"
},
- "1307": {
+ "1330": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1308": {
+ "1331": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.client_id"
},
- "1309": {
+ "1332": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.client_name"
},
- "1310": {
+ "1333": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type.client_secret"
},
- "1311": {
+ "1334": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_type"
+ },
+ "1335": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.token_endpoint_auth_method"
+ },
+ "1336": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.registration_type"
+ },
+ "1337": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1338": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1339": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1340": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1341": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1342": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1343": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "1344": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "1345": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "CreateOAuthClientParams"
+ },
+ "1346": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1347": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1348": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1349": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1350": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1351": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1352": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1353": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "UpdateOAuthClientParams"
+ },
+ "1354": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1355": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1356": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1357": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1358": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1359": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1360": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponse"
+ },
+ "1361": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "OAuthClientListResponse"
+ },
+ "1362": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1363": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1364": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1365": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1366": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1367": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1368": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1369": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1370": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1371": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1372": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1373": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi"
+ },
+ "1374": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1375": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1376": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1377": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1378": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1379": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1380": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1381": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1382": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1383": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1384": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1385": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1386": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_type"
+ "qualifiedName": "params"
},
- "1312": {
+ "1387": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.token_endpoint_auth_method"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
- "1313": {
+ "1388": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.registration_type"
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
},
- "1314": {
+ "1389": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "clientId"
},
- "1315": {
+ "1390": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type"
},
- "1316": {
+ "1391": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.data"
},
- "1317": {
+ "1392": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "__type.error"
},
- "1318": {
+ "1393": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
- "1319": {
+ "1394": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.created_at"
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
},
- "1320": {
+ "1395": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.updated_at"
+ "qualifiedName": "clientId"
},
- "1321": {
+ "1396": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CreateOAuthClientParams"
+ "qualifiedName": "OAuthAuthorizationClient"
},
- "1322": {
+ "1397": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1323": {
+ "1398": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_name"
+ "qualifiedName": "__type.client_id"
},
- "1324": {
+ "1399": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.client_uri"
+ "qualifiedName": "__type.client_name"
},
- "1325": {
+ "1400": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.redirect_uris"
+ "qualifiedName": "__type.client_uri"
},
- "1326": {
+ "1401": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.grant_types"
+ "qualifiedName": "__type.logo_uri"
},
- "1327": {
+ "1402": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.response_types"
+ "qualifiedName": "OAuthAuthorizationDetails"
},
- "1328": {
+ "1403": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.scope"
+ "qualifiedName": "__type"
},
- "1329": {
+ "1404": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientResponse"
+ "qualifiedName": "__type.authorization_id"
},
- "1330": {
+ "1405": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "OAuthClientListResponse"
+ "qualifiedName": "__type.redirect_uri"
},
- "1331": {
+ "1406": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "__type.client"
},
- "1332": {
+ "1407": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "__type.user"
},
- "1333": {
+ "1408": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1334": {
+ "1409": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
+ "qualifiedName": "__type.id"
},
- "1335": {
+ "1410": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.aud"
+ "qualifiedName": "__type.email"
},
- "1336": {
+ "1411": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.scope"
},
- "1337": {
+ "1412": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
},
- "1338": {
+ "1413": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "qualifiedName": "AuthOAuthConsentResponse"
},
- "1339": {
+ "1414": {
"sourceFileName": "src/lib/types.ts",
"qualifiedName": "__type"
},
- "1340": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.clients"
- },
- "1341": {
+ "1415": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.error"
+ "qualifiedName": "__type.redirect_url"
},
- "1342": {
+ "1416": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi"
+ "qualifiedName": "AuthOAuthServerApi"
},
- "1343": {
+ "1417": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
- "1344": {
+ "1418": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
},
- "1345": {
+ "1419": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "authorizationId"
},
- "1346": {
+ "1420": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
- "1347": {
+ "1421": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
},
- "1348": {
+ "1422": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "params"
+ "qualifiedName": "authorizationId"
},
- "1349": {
+ "1423": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "options"
},
- "1350": {
+ "1424": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ "qualifiedName": "__type"
},
- "1351": {
+ "1425": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
- "1352": {
+ "1426": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
- "1353": {
+ "1427": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
},
- "1354": {
+ "1428": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "authorizationId"
},
- "1355": {
+ "1429": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "options"
},
- "1356": {
+ "1430": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ "qualifiedName": "__type"
},
- "1357": {
+ "1431": {
"sourceFileName": "src/lib/types.ts",
- "qualifiedName": "clientId"
+ "qualifiedName": "__type.skipBrowserRedirect"
},
- "1358": {
+ "1432": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1359": {
+ "1433": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthError"
},
- "1360": {
+ "1434": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1361": {
+ "1435": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1362": {
+ "1436": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthApiError"
},
- "1363": {
+ "1437": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1364": {
+ "1438": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1365": {
+ "1439": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthSessionMissingError"
},
- "1366": {
+ "1440": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1367": {
+ "1441": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1368": {
+ "1442": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthImplicitGrantRedirectError"
},
- "1369": {
+ "1443": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1370": {
+ "1444": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1371": {
+ "1445": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthRetryableFetchError"
},
- "1372": {
+ "1446": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1373": {
+ "1447": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1374": {
+ "1448": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "isAuthWeakPasswordError"
},
- "1375": {
+ "1449": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "error"
},
- "1376": {
+ "1450": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1377": {
+ "1451": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.__constructor"
},
- "1378": {
+ "1452": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError"
},
- "1379": {
+ "1453": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1380": {
+ "1454": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1381": {
+ "1455": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1382": {
+ "1456": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1383": {
+ "1457": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1384": {
+ "1458": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1386": {
+ "1460": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1387": {
+ "1461": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.__constructor"
},
- "1388": {
+ "1462": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError"
},
- "1389": {
+ "1463": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1390": {
+ "1464": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1391": {
+ "1465": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1392": {
+ "1466": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthApiError.status"
},
- "1393": {
+ "1467": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1394": {
+ "1468": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1396": {
+ "1470": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1397": {
+ "1471": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.__constructor"
},
- "1398": {
+ "1472": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError"
},
- "1399": {
+ "1473": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1400": {
+ "1474": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "originalError"
},
- "1401": {
+ "1475": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthUnknownError.originalError"
},
- "1402": {
+ "1476": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1403": {
+ "1477": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1404": {
+ "1478": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.status"
},
- "1406": {
+ "1480": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1407": {
+ "1481": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.__constructor"
},
- "1408": {
+ "1482": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError"
},
- "1409": {
+ "1483": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1410": {
+ "1484": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "name"
},
- "1411": {
+ "1485": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1412": {
+ "1486": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "code"
},
- "1413": {
+ "1487": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1414": {
+ "1488": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1415": {
+ "1489": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1416": {
+ "1490": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1418": {
+ "1492": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1419": {
+ "1493": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError.__constructor"
},
- "1420": {
+ "1494": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthSessionMissingError"
},
- "1421": {
+ "1495": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1422": {
+ "1496": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1423": {
+ "1497": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1424": {
+ "1498": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1426": {
+ "1500": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1427": {
+ "1501": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError.__constructor"
},
- "1428": {
+ "1502": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidTokenResponseError"
},
- "1429": {
+ "1503": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1430": {
+ "1504": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1431": {
+ "1505": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1432": {
+ "1506": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1434": {
+ "1508": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1435": {
+ "1509": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError.__constructor"
},
- "1436": {
+ "1510": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidCredentialsError"
},
- "1437": {
+ "1511": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1438": {
+ "1512": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1439": {
+ "1513": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1440": {
+ "1514": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1441": {
+ "1515": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1443": {
+ "1517": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1444": {
+ "1518": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
},
- "1445": {
+ "1519": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError"
},
- "1446": {
+ "1520": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1447": {
+ "1521": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1448": {
+ "1522": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1449": {
+ "1523": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1450": {
+ "1524": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1451": {
+ "1525": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.details"
},
- "1452": {
+ "1526": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1453": {
+ "1527": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1454": {
+ "1528": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1455": {
+ "1529": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1456": {
+ "1530": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
},
- "1457": {
+ "1531": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1458": {
+ "1532": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1459": {
+ "1533": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1460": {
+ "1534": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1461": {
+ "1535": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1462": {
+ "1536": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1463": {
+ "1537": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1464": {
+ "1538": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1465": {
+ "1539": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1466": {
+ "1540": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1467": {
+ "1541": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1468": {
+ "1542": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1470": {
+ "1544": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1471": {
+ "1545": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
},
- "1472": {
+ "1546": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError"
},
- "1473": {
+ "1547": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1474": {
+ "1548": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "details"
},
- "1475": {
+ "1549": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1476": {
+ "1550": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1477": {
+ "1551": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1478": {
+ "1552": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
},
- "1479": {
+ "1553": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1480": {
+ "1554": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1481": {
+ "1555": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1482": {
+ "1556": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1483": {
+ "1557": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
},
- "1484": {
+ "1558": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object"
},
- "1485": {
+ "1559": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.name"
},
- "1486": {
+ "1560": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.message"
},
- "1487": {
+ "1561": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.status"
},
- "1488": {
+ "1562": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__object.details"
},
- "1489": {
+ "1563": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type"
},
- "1490": {
+ "1564": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.error"
},
- "1491": {
+ "1565": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "__type.code"
},
- "1492": {
+ "1566": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1493": {
+ "1567": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1494": {
+ "1568": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1495": {
+ "1569": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1497": {
+ "1571": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1498": {
+ "1572": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError.__constructor"
},
- "1499": {
+ "1573": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthRetryableFetchError"
},
- "1500": {
+ "1574": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1501": {
+ "1575": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1502": {
+ "1576": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1503": {
+ "1577": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1504": {
+ "1578": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1505": {
+ "1579": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1507": {
+ "1581": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1508": {
+ "1582": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.__constructor"
},
- "1509": {
+ "1583": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError"
},
- "1510": {
+ "1584": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1511": {
+ "1585": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "status"
},
- "1512": {
+ "1586": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "reasons"
},
- "1513": {
+ "1587": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthWeakPasswordError.reasons"
},
- "1514": {
+ "1588": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1515": {
+ "1589": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1516": {
+ "1590": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1517": {
+ "1591": {
"sourceFileName": "",
"qualifiedName": "__type"
},
- "1519": {
+ "1593": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1520": {
+ "1594": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError.__constructor"
},
- "1521": {
+ "1595": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthInvalidJwtError"
},
- "1522": {
+ "1596": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "message"
},
- "1523": {
+ "1597": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.name"
},
- "1524": {
+ "1598": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "CustomAuthError.status"
},
- "1525": {
+ "1599": {
"sourceFileName": "src/lib/errors.ts",
"qualifiedName": "AuthError.code"
},
- "1526": {
+ "1600": {
"sourceFileName": "",
"qualifiedName": "__type"
}
@@ -41051,7 +97046,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"signatures": [
@@ -41066,7 +97061,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"typeParameters": [
@@ -41135,7 +97130,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 39,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
}
],
"type": {
@@ -41156,7 +97151,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 42,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
}
],
"type": {
@@ -41174,8 +97169,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -41215,18 +97210,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -41288,8 +97283,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -41311,18 +97306,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -41383,7 +97378,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 37,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
}
],
"type": {
@@ -41409,7 +97404,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 43,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
}
],
"type": {
@@ -41428,7 +97423,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 35,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
}
],
"type": {
@@ -41470,7 +97465,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 38,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
}
],
"type": {
@@ -41491,7 +97486,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
}
],
"type": {
@@ -41512,7 +97507,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
}
],
"type": {
@@ -41536,7 +97531,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
}
],
"type": {
@@ -41561,7 +97556,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
]
}
@@ -41618,7 +97613,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -41639,7 +97634,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
}
],
"type": {
@@ -41657,8 +97652,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -41698,18 +97693,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -41771,8 +97766,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -41794,18 +97789,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -41868,7 +97863,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -41894,7 +97889,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 32,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
}
],
"type": {
@@ -41915,7 +97910,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -41958,7 +97953,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -41979,7 +97974,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -42002,7 +97997,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -42028,7 +98023,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -42052,7 +98047,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"signatures": [
@@ -42103,7 +98098,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"typeParameters": [
@@ -42158,7 +98153,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -42178,7 +98173,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -42203,7 +98198,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -42223,7 +98218,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -42448,7 +98443,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L240"
}
],
"signatures": [
@@ -42490,7 +98485,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L240"
}
],
"typeParameters": [
@@ -42575,7 +98570,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -42598,7 +98593,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"parameters": [
@@ -42643,7 +98638,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"signatures": [
@@ -42677,7 +98672,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"typeParameters": [
@@ -42784,7 +98779,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"signatures": [
@@ -42799,7 +98794,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"parameters": [
@@ -42931,7 +98926,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"signatures": [
@@ -42946,7 +98941,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"parameters": [
@@ -43054,7 +99049,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"signatures": [
@@ -43083,7 +99078,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"type": {
@@ -43176,7 +99171,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 15,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L15"
}
],
"typeParameters": [
@@ -43310,7 +99305,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L52"
}
],
"signatures": [
@@ -43333,7 +99328,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L52"
}
],
"typeParameters": [
@@ -43390,7 +99385,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -43416,7 +99411,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -43670,7 +99665,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 61,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L61"
}
],
"type": {
@@ -43688,8 +99683,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -43729,18 +99724,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -43802,8 +99797,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -43825,18 +99820,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -43907,7 +99902,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 59,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L59"
}
],
"type": {
@@ -43942,7 +99937,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 60,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L60"
}
],
"type": {
@@ -43966,7 +99961,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 58,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L58"
}
]
}
@@ -44031,7 +100026,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 40,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L40"
}
],
"type": {
@@ -44049,8 +100044,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -44090,18 +100085,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -44163,8 +100158,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -44186,18 +100181,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -44258,7 +100253,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 38,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L38"
}
],
"type": {
@@ -44284,7 +100279,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 39,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L39"
}
],
"type": {
@@ -44307,7 +100302,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 37,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L37"
}
],
"type": {
@@ -44346,19 +100341,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L81"
}
],
"signatures": [
@@ -44373,7 +100368,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L69"
}
],
"typeParameters": [
@@ -44472,7 +100467,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L73"
}
],
"typeParameters": [
@@ -44573,7 +100568,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L135"
}
],
"signatures": [
@@ -44596,7 +100591,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L135"
}
],
"typeParameters": [
@@ -44822,7 +100817,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 153,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L153"
}
],
"type": {
@@ -44872,7 +100867,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 152,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L152"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L152"
}
],
"type": {
@@ -44918,7 +100913,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 151,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L151"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L151"
}
],
"type": {
@@ -44939,7 +100934,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 150,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L150"
}
]
}
@@ -45046,7 +101041,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L97"
}
],
"signatures": [
@@ -45069,7 +101064,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L97"
}
],
"typeParameters": [
@@ -45209,7 +101204,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 16,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L16"
}
],
"typeParameters": [
@@ -45274,7 +101269,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 19,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L19"
}
],
"type": {
@@ -45300,7 +101295,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 18,
"character": 63,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L18"
}
]
}
@@ -45328,7 +101323,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestClient.ts",
"line": 22,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestClient.ts#L22"
}
]
}
@@ -45602,7 +101597,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"signatures": [
@@ -45617,7 +101612,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"parameters": [
@@ -45647,7 +101642,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 73,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"type": {
@@ -45666,7 +101661,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"type": {
@@ -45685,7 +101680,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"type": {
@@ -45704,7 +101699,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
],
"type": {
@@ -45724,7 +101719,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 11,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L11"
}
]
}
@@ -45762,7 +101757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L9"
}
],
"type": {
@@ -45781,7 +101776,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 7,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L7"
}
],
"type": {
@@ -45800,7 +101795,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L8"
}
],
"type": {
@@ -45824,7 +101819,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestError.ts",
"line": 6,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestError.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestError.ts#L6"
}
],
"extendedTypes": [
@@ -45857,7 +101852,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"signatures": [
@@ -45872,7 +101867,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"typeParameters": [
@@ -46001,7 +101996,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 39,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
}
],
"type": {
@@ -46022,7 +102017,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 42,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
}
],
"type": {
@@ -46040,8 +102035,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -46081,18 +102076,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -46154,8 +102149,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -46177,18 +102172,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -46249,7 +102244,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 37,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
}
],
"type": {
@@ -46275,7 +102270,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 43,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
}
],
"type": {
@@ -46294,7 +102289,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 35,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
}
],
"type": {
@@ -46336,7 +102331,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 38,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
}
],
"type": {
@@ -46357,7 +102352,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
}
],
"type": {
@@ -46378,7 +102373,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
}
],
"type": {
@@ -46402,7 +102397,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
}
],
"type": {
@@ -46427,7 +102422,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
]
}
@@ -46527,7 +102522,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -46554,7 +102549,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
}
],
"type": {
@@ -46572,8 +102567,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -46613,18 +102608,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -46686,8 +102681,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -46709,18 +102704,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -46789,7 +102784,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -46821,7 +102816,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 32,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
}
],
"type": {
@@ -46848,7 +102843,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -46897,7 +102892,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -46924,7 +102919,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -46953,7 +102948,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -46985,7 +102980,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -47014,9 +103009,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 199,
+ "line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -47039,9 +103034,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 199,
+ "line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -47142,21 +103137,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 354,
+ "line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L354"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 358,
+ "line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 366,
+ "line": 368,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L368"
}
],
"signatures": [
@@ -47169,9 +103164,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 354,
+ "line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L354"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L356"
}
],
"typeParameters": [
@@ -47277,9 +103272,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 358,
+ "line": 360,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L360"
}
],
"parameters": [
@@ -47307,17 +103302,6 @@
"type": "intrinsic",
"name": "string"
},
- {
- "type": "typeOperator",
- "operator": "readonly",
- "target": {
- "type": "array",
- "elementType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- },
{
"type": "reference",
"target": {
@@ -47336,6 +103320,17 @@
],
"name": "Record",
"package": "typescript"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
}
]
}
@@ -47403,21 +103398,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 327,
+ "line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 331,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 339,
+ "line": 341,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L341"
}
],
"signatures": [
@@ -47430,9 +103425,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 327,
+ "line": 329,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L329"
}
],
"typeParameters": [
@@ -47538,9 +103533,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 331,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L331"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L333"
}
],
"parameters": [
@@ -47568,17 +103563,6 @@
"type": "intrinsic",
"name": "string"
},
- {
- "type": "typeOperator",
- "operator": "readonly",
- "target": {
- "type": "array",
- "elementType": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- },
{
"type": "reference",
"target": {
@@ -47597,6 +103581,17 @@
],
"name": "Record",
"package": "typescript"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
}
]
}
@@ -47620,9 +103615,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 241,
+ "line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -47653,9 +103648,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 241,
+ "line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -47701,9 +103696,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 99,
+ "line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"signatures": [
@@ -47756,9 +103751,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 99,
+ "line": 101,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L101"
}
],
"typeParameters": [
@@ -47954,9 +103949,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 279,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -47987,9 +103982,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 279,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -48043,9 +104038,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 287,
+ "line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -48081,9 +104076,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 290,
+ "line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -48123,9 +104118,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 292,
+ "line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -48170,9 +104165,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 289,
+ "line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -48216,9 +104211,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 288,
+ "line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -48254,9 +104249,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 291,
+ "line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -48275,9 +104270,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 286,
+ "line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L286"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -48436,21 +104431,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 581,
+ "line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 586,
+ "line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 600,
+ "line": 602,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L600"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L602"
}
],
"signatures": [
@@ -48463,9 +104458,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 581,
+ "line": 583,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L583"
}
],
"typeParameters": [
@@ -48631,9 +104626,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 586,
+ "line": 588,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L588"
}
],
"parameters": [
@@ -48689,9 +104684,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 249,
+ "line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -48722,9 +104717,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 249,
+ "line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -48831,21 +104826,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 132,
+ "line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 133,
+ "line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 140,
+ "line": 142,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L140"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L142"
}
],
"signatures": [
@@ -48858,9 +104853,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 132,
+ "line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L134"
}
],
"typeParameters": [
@@ -48931,9 +104926,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 133,
+ "line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L135"
}
],
"parameters": [
@@ -49022,21 +105017,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 145,
+ "line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 146,
+ "line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 153,
+ "line": 155,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L155"
}
],
"signatures": [
@@ -49049,9 +105044,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 145,
+ "line": 147,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L145"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L147"
}
],
"typeParameters": [
@@ -49122,9 +105117,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 146,
+ "line": 148,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L146"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L148"
}
],
"parameters": [
@@ -49213,21 +105208,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 229,
+ "line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 230,
+ "line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 237,
+ "line": 239,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L237"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L239"
}
],
"signatures": [
@@ -49240,9 +105235,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 229,
+ "line": 231,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L231"
}
],
"typeParameters": [
@@ -49299,9 +105294,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 230,
+ "line": 232,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L232"
}
],
"parameters": [
@@ -49390,21 +105385,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 242,
+ "line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 246,
+ "line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 253,
+ "line": 255,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L255"
}
],
"signatures": [
@@ -49417,9 +105412,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 242,
+ "line": 244,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L244"
}
],
"typeParameters": [
@@ -49483,9 +105478,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 246,
+ "line": 248,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L246"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L248"
}
],
"parameters": [
@@ -49581,21 +105576,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 258,
+ "line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 262,
+ "line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 269,
+ "line": 271,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L269"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L271"
}
],
"signatures": [
@@ -49608,9 +105603,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 258,
+ "line": 260,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L258"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L260"
}
],
"typeParameters": [
@@ -49674,9 +105669,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 262,
+ "line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L264"
}
],
"parameters": [
@@ -49726,9 +105721,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 302,
+ "line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"signatures": [
@@ -49765,9 +105760,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 302,
+ "line": 304,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L302"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L304"
}
],
"typeParameters": [
@@ -50053,21 +106048,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 274,
+ "line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 278,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 291,
+ "line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L293"
}
],
"signatures": [
@@ -50080,9 +106075,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 274,
+ "line": 276,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L274"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L276"
}
],
"typeParameters": [
@@ -50171,9 +106166,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 278,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L278"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L280"
}
],
"parameters": [
@@ -50271,21 +106266,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 184,
+ "line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 185,
+ "line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 192,
+ "line": 194,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L192"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L194"
}
],
"signatures": [
@@ -50298,9 +106293,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 184,
+ "line": 186,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L186"
}
],
"typeParameters": [
@@ -50357,9 +106352,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 185,
+ "line": 187,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L187"
}
],
"parameters": [
@@ -50448,21 +106443,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 197,
+ "line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 201,
+ "line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 208,
+ "line": 210,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L208"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L210"
}
],
"signatures": [
@@ -50475,9 +106470,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 197,
+ "line": 199,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L197"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L199"
}
],
"typeParameters": [
@@ -50541,9 +106536,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 201,
+ "line": 203,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L201"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L203"
}
],
"parameters": [
@@ -50639,21 +106634,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 213,
+ "line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 217,
+ "line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 224,
+ "line": 226,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L226"
}
],
"signatures": [
@@ -50666,9 +106661,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 213,
+ "line": 215,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L213"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L215"
}
],
"typeParameters": [
@@ -50732,9 +106727,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 217,
+ "line": 219,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L217"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L219"
}
],
"parameters": [
@@ -50786,9 +106781,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 150,
+ "line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -50819,9 +106814,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 150,
+ "line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -50894,9 +106889,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -50923,9 +106918,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -50944,9 +106939,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -51026,21 +107021,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 158,
+ "line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 159,
+ "line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 166,
+ "line": 168,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L166"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L168"
}
],
"signatures": [
@@ -51053,9 +107048,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 158,
+ "line": 160,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L158"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L160"
}
],
"typeParameters": [
@@ -51126,9 +107121,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 159,
+ "line": 161,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L161"
}
],
"parameters": [
@@ -51217,21 +107212,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 171,
+ "line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 172,
+ "line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 179,
+ "line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L181"
}
],
"signatures": [
@@ -51244,9 +107239,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 171,
+ "line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L173"
}
],
"typeParameters": [
@@ -51317,9 +107312,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 172,
+ "line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L174"
}
],
"parameters": [
@@ -51398,21 +107393,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 514,
+ "line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 515,
+ "line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 523,
+ "line": 525,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L523"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L525"
}
],
"signatures": [
@@ -51425,9 +107420,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 514,
+ "line": 516,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L514"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L516"
}
],
"typeParameters": [
@@ -51502,9 +107497,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 515,
+ "line": 517,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L515"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L517"
}
],
"parameters": [
@@ -51553,9 +107548,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 358,
+ "line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -51578,9 +107573,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 358,
+ "line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -51609,7 +107604,7 @@
"checkType": {
"type": "reference",
"target": {
- "sourceFileName": "src/types/types.ts",
+ "sourceFileName": "src/types/feature-flags.ts",
"qualifiedName": "MaxAffectedEnabled"
},
"typeArguments": [
@@ -51784,9 +107779,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 224,
+ "line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -51825,9 +107820,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 224,
+ "line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -51932,9 +107927,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 120,
+ "line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"signatures": [
@@ -51971,9 +107966,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 120,
+ "line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L122"
}
],
"typeParameters": [
@@ -52206,21 +108201,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 530,
+ "line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 535,
+ "line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 549,
+ "line": 551,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L551"
}
],
"signatures": [
@@ -52233,9 +108228,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 530,
+ "line": 532,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L530"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L532"
}
],
"typeParameters": [
@@ -52322,9 +108317,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 535,
+ "line": 537,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L535"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L537"
}
],
"parameters": [
@@ -52378,9 +108373,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 569,
+ "line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"signatures": [
@@ -52417,9 +108412,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 569,
+ "line": 571,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L569"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L571"
}
],
"parameters": [
@@ -52492,9 +108487,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 574,
+ "line": 576,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -52521,9 +108516,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 574,
+ "line": 576,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
],
"type": {
@@ -52542,9 +108537,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 574,
+ "line": 576,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L574"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L576"
}
]
}
@@ -52704,33 +108699,33 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 74,
+ "line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 78,
+ "line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 85,
+ "line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 92,
+ "line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 114,
+ "line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -52745,9 +108740,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 74,
+ "line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -52806,9 +108801,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -52827,9 +108822,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -52848,9 +108843,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -52868,9 +108863,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -52898,9 +108893,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 78,
+ "line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -52943,9 +108938,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -52964,9 +108959,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -52985,9 +108980,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -53005,9 +109000,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -53061,9 +109056,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 85,
+ "line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -53122,9 +109117,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -53143,9 +109138,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -53164,9 +109159,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -53184,9 +109179,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -53240,9 +109235,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 92,
+ "line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -53285,9 +109280,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -53306,9 +109301,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -53327,9 +109322,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -53347,9 +109342,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -53428,21 +109423,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 453,
+ "line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 457,
+ "line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 465,
+ "line": 467,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L465"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L467"
}
],
"signatures": [
@@ -53455,9 +109450,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 453,
+ "line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L453"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L455"
}
],
"typeParameters": [
@@ -53544,9 +109539,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 457,
+ "line": 459,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L457"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L459"
}
],
"parameters": [
@@ -53609,7 +109604,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"signatures": [
@@ -53662,7 +109657,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"typeParameters": [
@@ -53717,7 +109712,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -53737,7 +109732,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -53762,7 +109757,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -53782,7 +109777,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -54013,9 +110008,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 177,
+ "line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -54078,9 +110073,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 177,
+ "line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -54172,9 +110167,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -54201,9 +110196,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -54222,9 +110217,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -54304,21 +110299,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 438,
+ "line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 439,
+ "line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 448,
+ "line": 450,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L450"
}
],
"signatures": [
@@ -54331,9 +110326,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 438,
+ "line": 440,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L438"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L440"
}
],
"typeParameters": [
@@ -54390,9 +110385,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 439,
+ "line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L439"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L441"
}
],
"parameters": [
@@ -54481,21 +110476,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 380,
+ "line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 381,
+ "line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 389,
+ "line": 391,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L391"
}
],
"signatures": [
@@ -54508,9 +110503,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 380,
+ "line": 382,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L382"
}
],
"typeParameters": [
@@ -54567,9 +110562,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 381,
+ "line": 383,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L381"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L383"
}
],
"parameters": [
@@ -54666,21 +110661,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 394,
+ "line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 395,
+ "line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 404,
+ "line": 406,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L404"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L406"
}
],
"signatures": [
@@ -54693,9 +110688,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 394,
+ "line": 396,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L394"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L396"
}
],
"typeParameters": [
@@ -54752,9 +110747,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 395,
+ "line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L397"
}
],
"parameters": [
@@ -54843,21 +110838,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 409,
+ "line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 410,
+ "line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 418,
+ "line": 420,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L420"
}
],
"signatures": [
@@ -54870,9 +110865,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 409,
+ "line": 411,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L411"
}
],
"typeParameters": [
@@ -54929,9 +110924,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 410,
+ "line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L412"
}
],
"parameters": [
@@ -55028,21 +111023,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 423,
+ "line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 424,
+ "line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 433,
+ "line": 435,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L435"
}
],
"signatures": [
@@ -55055,9 +111050,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 423,
+ "line": 425,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L423"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L425"
}
],
"typeParameters": [
@@ -55114,9 +111109,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 424,
+ "line": 426,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L424"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L426"
}
],
"parameters": [
@@ -55161,9 +111156,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 332,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -55205,9 +111200,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 332,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -55334,9 +111329,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 321,
+ "line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -55367,9 +111362,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 321,
+ "line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -55400,9 +111395,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -55465,9 +111460,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -55718,7 +111713,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -55743,7 +111738,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"parameters": [
@@ -55798,9 +111793,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 210,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -55839,9 +111834,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 210,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -56021,21 +112016,21 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 476,
+ "line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 481,
+ "line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 496,
+ "line": 498,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L496"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L498"
}
],
"signatures": [
@@ -56048,9 +112043,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 476,
+ "line": 478,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L476"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L478"
}
],
"typeParameters": [
@@ -56120,9 +112115,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 479,
+ "line": 481,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -56141,9 +112136,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 479,
+ "line": 481,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
],
"type": {
@@ -56174,9 +112169,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 479,
+ "line": 481,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L479"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
}
]
}
@@ -56197,9 +112192,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 481,
+ "line": 483,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L483"
}
],
"parameters": [
@@ -56253,9 +112248,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 484,
+ "line": 486,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -56274,9 +112269,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 484,
+ "line": 486,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
],
"type": {
@@ -56307,9 +112302,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 484,
+ "line": 486,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L486"
}
]
}
@@ -56336,7 +112331,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"signatures": [
@@ -56372,7 +112367,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"typeParameters": [
@@ -56448,7 +112443,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"signatures": [
@@ -56463,7 +112458,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"parameters": [
@@ -56564,7 +112559,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"signatures": [
@@ -56579,7 +112574,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"parameters": [
@@ -56689,7 +112684,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"signatures": [
@@ -56720,7 +112715,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"type": {
@@ -56857,9 +112852,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestFilterBuilder.ts",
- "line": 74,
+ "line": 76,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestFilterBuilder.ts#L76"
}
],
"typeParameters": [
@@ -57044,7 +113039,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24"
}
],
"signatures": [
@@ -57059,7 +113054,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L24"
}
],
"typeParameters": [
@@ -57169,7 +113164,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -57195,7 +113190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -57262,7 +113257,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 33,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L33"
}
],
"type": {
@@ -57280,8 +113275,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -57321,18 +113316,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -57394,8 +113389,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -57417,18 +113412,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -57491,7 +113486,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 31,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L31"
}
],
"type": {
@@ -57518,7 +113513,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 32,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L32"
}
],
"type": {
@@ -57538,7 +113533,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 30,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L30"
}
]
}
@@ -57610,7 +113605,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L22"
}
],
"type": {
@@ -57628,8 +113623,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -57669,18 +113664,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -57742,8 +113737,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -57765,18 +113760,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -57837,7 +113832,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L19"
}
],
"type": {
@@ -57863,7 +113858,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L20"
}
],
"type": {
@@ -57884,7 +113879,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L21"
}
],
"type": {
@@ -57908,7 +113903,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L18"
}
],
"type": {
@@ -57932,7 +113927,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L416"
}
],
"signatures": [
@@ -57963,7 +113958,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 416,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L416"
}
],
"parameters": [
@@ -58043,7 +114038,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 419,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L419"
}
],
"type": {
@@ -58076,7 +114071,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 418,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L418"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L418"
}
]
}
@@ -58260,19 +114255,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L121"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L135"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L176"
}
],
"signatures": [
@@ -58287,7 +114282,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 121,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L121"
}
],
"typeParameters": [
@@ -58363,7 +114358,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 124,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L124"
}
],
"type": {
@@ -58396,7 +114391,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 123,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L123"
}
]
}
@@ -58479,7 +114474,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L135"
}
],
"typeParameters": [
@@ -58558,7 +114553,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 138,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L138"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L138"
}
],
"type": {
@@ -58592,7 +114587,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 139,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L139"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L139"
}
],
"type": {
@@ -58612,7 +114607,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 137,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L137"
}
]
}
@@ -58697,7 +114692,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L63"
}
],
"signatures": [
@@ -58720,7 +114715,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L63"
}
],
"typeParameters": [
@@ -58916,7 +114911,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 77,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L77"
}
],
"type": {
@@ -58974,7 +114969,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 76,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L76"
}
],
"type": {
@@ -58994,7 +114989,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 75,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L75"
}
]
}
@@ -59085,7 +115080,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L366"
}
],
"signatures": [
@@ -59116,7 +115111,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 366,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L366"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L366"
}
],
"typeParameters": [
@@ -59246,7 +115241,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 371,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L371"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L371"
}
],
"type": {
@@ -59279,7 +115274,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 370,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L370"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L370"
}
]
}
@@ -59555,19 +115550,19 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L222"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 293,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L293"
}
],
"signatures": [
@@ -59582,7 +115577,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 222,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L222"
}
],
"typeParameters": [
@@ -59658,7 +115653,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 227,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L227"
}
],
"type": {
@@ -59692,7 +115687,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 226,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L226"
}
],
"type": {
@@ -59713,7 +115708,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 225,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L225"
}
],
"type": {
@@ -59733,7 +115728,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 224,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L224"
}
]
}
@@ -59816,7 +115811,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L238"
}
],
"typeParameters": [
@@ -59895,7 +115890,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 243,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L243"
}
],
"type": {
@@ -59929,7 +115924,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 244,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L244"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L244"
}
],
"type": {
@@ -59950,7 +115945,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 242,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L242"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L242"
}
],
"type": {
@@ -59971,7 +115966,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 241,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L241"
}
],
"type": {
@@ -59991,7 +115986,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 240,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L240"
}
]
}
@@ -60085,7 +116080,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L11"
}
],
"typeParameters": [
@@ -60195,7 +116190,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
],
"type": {
@@ -60215,7 +116210,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestQueryBuilder.ts",
"line": 16,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestQueryBuilder.ts#L16"
}
]
}
@@ -60256,7 +116251,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"signatures": [
@@ -60271,7 +116266,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
],
"typeParameters": [
@@ -60400,7 +116395,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 39,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L39"
}
],
"type": {
@@ -60421,7 +116416,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 42,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L42"
}
],
"type": {
@@ -60439,8 +116434,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -60480,18 +116475,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -60553,8 +116548,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -60576,18 +116571,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -60648,7 +116643,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 37,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L37"
}
],
"type": {
@@ -60674,7 +116669,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 43,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L43"
}
],
"type": {
@@ -60693,7 +116688,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 35,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L35"
}
],
"type": {
@@ -60735,7 +116730,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 38,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L38"
}
],
"type": {
@@ -60756,7 +116751,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 40,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L40"
}
],
"type": {
@@ -60777,7 +116772,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 41,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L41"
}
],
"type": {
@@ -60801,7 +116796,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 36,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L36"
}
],
"type": {
@@ -60826,7 +116821,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 34,
"character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L34"
}
]
}
@@ -60926,7 +116921,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 28,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L28"
}
],
"type": {
@@ -60953,7 +116948,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L31"
}
],
"type": {
@@ -60971,8 +116966,8 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -61012,18 +117007,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
@@ -61085,8 +117080,8 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
@@ -61108,18 +117103,18 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
@@ -61188,7 +117183,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 26,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L26"
}
],
"type": {
@@ -61220,7 +117215,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 32,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L32"
}
],
"type": {
@@ -61247,7 +117242,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L24"
}
],
"type": {
@@ -61296,7 +117291,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 27,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L27"
}
],
"type": {
@@ -61323,7 +117318,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L29"
}
],
"type": {
@@ -61352,7 +117347,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L30"
}
],
"type": {
@@ -61384,7 +117379,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 25,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L25"
}
],
"type": {
@@ -61411,9 +117406,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 199,
+ "line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"signatures": [
@@ -61434,9 +117429,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 199,
+ "line": 200,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L199"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L200"
}
],
"parameters": [
@@ -61481,9 +117476,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 241,
+ "line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"signatures": [
@@ -61512,9 +117507,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 241,
+ "line": 242,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L241"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L242"
}
],
"type": {
@@ -61550,9 +117545,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 279,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"signatures": [
@@ -61581,9 +117576,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 279,
+ "line": 280,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L279"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L280"
}
],
"parameters": [
@@ -61637,9 +117632,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 287,
+ "line": 288,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
}
],
"type": {
@@ -61675,9 +117670,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 290,
+ "line": 291,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
}
],
"type": {
@@ -61717,9 +117712,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 292,
+ "line": 293,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L293"
}
],
"type": {
@@ -61764,9 +117759,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 289,
+ "line": 290,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L290"
}
],
"type": {
@@ -61810,9 +117805,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 288,
+ "line": 289,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L288"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L289"
}
],
"type": {
@@ -61848,9 +117843,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 291,
+ "line": 292,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L291"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L292"
}
],
"type": {
@@ -61869,9 +117864,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 286,
+ "line": 287,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L286"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L287"
}
]
}
@@ -61964,9 +117959,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 249,
+ "line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"signatures": [
@@ -61995,9 +117990,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 249,
+ "line": 250,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L250"
}
],
"type": {
@@ -62048,9 +118043,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 150,
+ "line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"signatures": [
@@ -62079,9 +118074,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 150,
+ "line": 151,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L150"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L151"
}
],
"parameters": [
@@ -62154,9 +118149,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -62183,9 +118178,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
],
"type": {
@@ -62204,9 +118199,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 155,
+ "line": 156,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L155"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L156"
}
]
}
@@ -62230,9 +118225,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 358,
+ "line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"signatures": [
@@ -62253,9 +118248,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 358,
+ "line": 359,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L358"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L359"
}
],
"parameters": [
@@ -62284,7 +118279,7 @@
"checkType": {
"type": "reference",
"target": {
- "sourceFileName": "src/types/types.ts",
+ "sourceFileName": "src/types/feature-flags.ts",
"qualifiedName": "MaxAffectedEnabled"
},
"typeArguments": [
@@ -62447,9 +118442,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 224,
+ "line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"signatures": [
@@ -62486,9 +118481,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 224,
+ "line": 225,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L225"
}
],
"typeParameters": [
@@ -62717,33 +118712,33 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 74,
+ "line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 78,
+ "line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 85,
+ "line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 92,
+ "line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
},
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 114,
+ "line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L115"
}
],
"signatures": [
@@ -62756,9 +118751,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 74,
+ "line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L75"
}
],
"typeParameters": [
@@ -62817,9 +118812,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -62838,9 +118833,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -62859,9 +118854,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
],
"type": {
@@ -62879,9 +118874,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 76,
+ "line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L77"
}
]
}
@@ -62902,9 +118897,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 78,
+ "line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L79"
}
],
"parameters": [
@@ -62947,9 +118942,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -62968,9 +118963,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -62989,9 +118984,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
],
"type": {
@@ -63009,9 +119004,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 80,
+ "line": 81,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L81"
}
]
}
@@ -63058,9 +119053,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 85,
+ "line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L86"
}
],
"typeParameters": [
@@ -63119,9 +119114,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -63140,9 +119135,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -63161,9 +119156,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
],
"type": {
@@ -63181,9 +119176,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 87,
+ "line": 88,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L88"
}
]
}
@@ -63230,9 +119225,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 92,
+ "line": 93,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L92"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L93"
}
],
"parameters": [
@@ -63275,9 +119270,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -63296,9 +119291,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -63317,9 +119312,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
],
"type": {
@@ -63337,9 +119332,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 94,
+ "line": 95,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L95"
}
]
}
@@ -63366,7 +119361,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"signatures": [
@@ -63419,7 +119414,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 275,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L275"
}
],
"typeParameters": [
@@ -63474,7 +119469,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -63494,7 +119489,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 20,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -63519,7 +119514,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
],
"type": {
@@ -63539,7 +119534,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 277,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L277"
}
]
}
@@ -63768,9 +119763,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 177,
+ "line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"signatures": [
@@ -63831,9 +119826,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 177,
+ "line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L177"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L178"
}
],
"parameters": [
@@ -63925,9 +119920,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -63954,9 +119949,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 32,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
],
"type": {
@@ -63975,9 +119970,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 183,
+ "line": 184,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L183"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L184"
}
]
}
@@ -64001,9 +119996,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 332,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"signatures": [
@@ -64043,9 +120038,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 332,
+ "line": 333,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L332"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L333"
}
],
"typeParameters": [
@@ -64170,9 +120165,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 321,
+ "line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"signatures": [
@@ -64201,9 +120196,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 321,
+ "line": 322,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L322"
}
],
"type": {
@@ -64222,9 +120217,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"signatures": [
@@ -64285,9 +120280,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 25,
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L26"
}
],
"typeParameters": [
@@ -64528,7 +120523,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"signatures": [
@@ -64553,7 +120548,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L77"
}
],
"parameters": [
@@ -64606,9 +120601,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 210,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"signatures": [
@@ -64645,9 +120640,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 210,
+ "line": 211,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L210"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L211"
}
],
"typeParameters": [
@@ -64737,7 +120732,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"signatures": [
@@ -64773,7 +120768,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L83"
}
],
"typeParameters": [
@@ -64849,7 +120844,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"signatures": [
@@ -64864,7 +120859,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 90,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L90"
}
],
"parameters": [
@@ -64965,7 +120960,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"signatures": [
@@ -64980,7 +120975,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 97,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L97"
}
],
"parameters": [
@@ -65090,7 +121085,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"signatures": [
@@ -65121,7 +121116,7 @@
"fileName": "packages/core/postgrest-js/src/PostgrestBuilder.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestBuilder.ts#L69"
}
],
"type": {
@@ -65256,9 +121251,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/PostgrestTransformBuilder.ts",
- "line": 7,
+ "line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/PostgrestTransformBuilder.ts#L8"
}
],
"typeParameters": [
@@ -65410,7 +121405,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L23"
}
],
"type": {
@@ -65429,7 +121424,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L22"
}
],
"type": {
@@ -65448,7 +121443,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L21"
}
],
"type": {
@@ -65472,7 +121467,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -65498,7 +121493,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -65523,7 +121518,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 20,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L20"
}
],
"extendedTypes": [
@@ -65556,7 +121551,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L18"
}
],
"type": {
@@ -65584,7 +121579,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 17,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L17"
}
],
"type": {
@@ -65607,7 +121602,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L16"
}
],
"type": {
@@ -65628,7 +121623,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 12,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L12"
}
],
"type": {
@@ -65654,7 +121649,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L13"
}
],
"type": {
@@ -65679,7 +121674,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 15,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L15"
}
],
"typeParameters": [
@@ -65714,7 +121709,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
],
"type": {
@@ -65739,7 +121734,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 55,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/common/common.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/common/common.ts#L55"
}
],
"type": {
@@ -65759,7 +121754,7 @@
"fileName": "packages/core/postgrest-js/src/types/common/common.ts",
"line": 54,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/common/common.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/common/common.ts#L54"
}
]
}
@@ -65776,7 +121771,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 30,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L30"
}
],
"typeParameters": [
@@ -65824,7 +121819,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L31"
}
],
"typeParameters": [
@@ -65866,7 +121861,7 @@
"fileName": "packages/core/postgrest-js/src/types/types.ts",
"line": 29,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/types/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/types/types.ts#L29"
}
],
"typeParameters": [
@@ -65922,9 +121917,9 @@
"sources": [
{
"fileName": "packages/core/postgrest-js/src/select-query-parser/result.ts",
- "line": 40,
+ "line": 38,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/select-query-parser/result.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/select-query-parser/result.ts#L38"
}
],
"typeParameters": [
@@ -66509,7 +122504,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L17"
}
],
"type": {
@@ -66532,7 +122527,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L22"
}
],
"type": {
@@ -66556,7 +122551,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L18"
}
],
"type": {
@@ -66580,7 +122575,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L23"
}
],
"type": {
@@ -66604,7 +122599,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L20"
}
],
"type": {
@@ -66628,7 +122623,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L19"
}
],
"type": {
@@ -66652,7 +122647,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L21"
}
],
"type": {
@@ -66677,7 +122672,7 @@
"fileName": "packages/core/postgrest-js/src/index.ts",
"line": 17,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/postgrest-js/src/index.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/postgrest-js/src/index.ts#L17"
}
]
}
@@ -66706,15 +122701,7 @@
"readme": [
{
"kind": "text",
- "text": "# "
- },
- {
- "kind": "code",
- "text": "`postgrest-js`"
- },
- {
- "kind": "text",
- "text": "\n\n[](https://github.com/supabase/postgrest-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/postgrest-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/postgrest-js)\n\nIsomorphic JavaScript client for [PostgREST](https://postgrest.org). The goal of this library is to make an \"ORM-like\" restful interface.\n\nFull documentation can be found [here](https://supabase.github.io/supabase-js/postgrest-js/v2/spec.json).\n\n### Quick start\n\nInstall\n\n"
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase PostgREST JS SDK \n\n Isomorphic JavaScript SDK for PostgREST with an ORM-like interface. \n\n \n Guides \n ·\n Reference Docs \n ·\n TypeDoc \n
\n\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/postgrest-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/postgrest-js)\n\n
\n\n### Quick start\n\nInstall\n\n"
},
{
"kind": "code",
@@ -66854,7 +122841,7 @@
},
{
"kind": "code",
- "text": "```bash\n# Run tests with coverage\nnpx nx test:run postgrest-js\n\n# Update test snapshots and regenerate types\nnpx nx test:update postgrest-js\n\n# Type checking only\nnpx nx test:types postgrest-js\n\n# Format checking\nnpx nx format:check postgrest-js\n```"
+ "text": "```bash\n# Run tests with coverage\nnpx nx test:run postgrest-js\n\n# Update test snapshots and regenerate types\nnpx nx test:update postgrest-js\n\n# Type checking only\nnpx nx test:types postgrest-js\n\n```"
},
{
"kind": "text",
@@ -66890,7 +122877,7 @@
},
{
"kind": "text",
- "text": "\n- **Generated Types Test** - Ensures generated types match database schema\n- **Unit Tests** - Jest tests covering all client functionality\n- **Smoke Tests** - Basic import/require tests for CommonJS and ESM\n\n#### Prerequisites\n\n- **Docker** must be installed and running\n- **Port 3000** - PostgREST server (API)\n- **Port 8080** - Database schema endpoint (for type generation)\n\n**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the client library.\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "text": "\n- **Generated Types Test** - Ensures generated types match database schema\n- **Unit Tests** - Jest tests covering all client functionality\n- **Smoke Tests** - Basic import/require tests for CommonJS and ESM\n\n#### Prerequisites\n\n- **Docker** must be installed and running\n- **Port 3000** - PostgREST server (API)\n- **Port 8080** - Database schema endpoint (for type generation)\n\n**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the SDK.\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
},
{
"kind": "relative-link",
@@ -66899,7 +122886,7 @@
},
{
"kind": "text",
- "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## License\n\nThis repo is licensed under MIT License.\n\n## Sponsors\n\nWe are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don’t exist we build them and open source them ourselves. Thanks to these sponsors who are making the OSS ecosystem better for everyone.\n\n[](https://github.com/sponsors/supabase)"
+ "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## License\n\nThis repo is licensed under MIT License."
}
],
"symbolIdMap": {
@@ -67020,15 +123007,15 @@
"qualifiedName": "init"
},
"29": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"30": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"31": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"32": {
@@ -67064,15 +123051,15 @@
"qualifiedName": "init"
},
"40": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"41": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"42": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"43": {
@@ -67284,15 +123271,15 @@
"qualifiedName": "init"
},
"95": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"96": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"97": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"98": {
@@ -67332,15 +123319,15 @@
"qualifiedName": "init"
},
"107": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"108": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"109": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"110": {
@@ -67680,15 +123667,15 @@
"qualifiedName": "init"
},
"194": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"195": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"196": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"197": {
@@ -68940,15 +124927,15 @@
"qualifiedName": "init"
},
"509": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"510": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"511": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"512": {
@@ -69184,15 +125171,15 @@
"qualifiedName": "init"
},
"570": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"571": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"572": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"573": {
@@ -69576,15 +125563,15 @@
"qualifiedName": "init"
},
"668": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"669": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"670": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"671": {
@@ -69804,15 +125791,15 @@
"qualifiedName": "init"
},
"725": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"726": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"727": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"728": {
@@ -69868,15 +125855,15 @@
"qualifiedName": "init"
},
"741": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
"742": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
"743": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
"744": {
@@ -70171,495 +126158,2010 @@
"sourceFileName": "src/select-query-parser/result.ts",
"qualifiedName": "Query"
},
- "817": {
- "sourceFileName": "src/select-query-parser/result.ts",
- "qualifiedName": "ClientOptions"
- }
- },
- "files": {
- "entries": {
- "1": "src/index.ts",
- "2": "../../../CONTRIBUTING.md"
+ "817": {
+ "sourceFileName": "src/select-query-parser/result.ts",
+ "qualifiedName": "ClientOptions"
+ }
+ },
+ "files": {
+ "entries": {
+ "1": "src/index.ts",
+ "2": "../../../CONTRIBUTING.md"
+ },
+ "reflections": {
+ "1": 0
+ }
+ }
+ },
+ {
+ "id": 0,
+ "name": "@supabase/realtime-js",
+ "variant": "project",
+ "kind": 1,
+ "flags": {},
+ "children": [
+ {
+ "id": 758,
+ "name": "REALTIME_LISTEN_TYPES",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 759,
+ "name": "BROADCAST",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 135,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 761,
+ "name": "POSTGRES_CHANGES",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 137,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L137"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 760,
+ "name": "PRESENCE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 136,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L136"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 762,
+ "name": "SYSTEM",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 138,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [759, 761, 760, 762]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 134,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
+ }
+ ]
+ },
+ {
+ "id": 763,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 764,
+ "name": "ALL",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 128,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L128"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "*"
+ }
+ },
+ {
+ "id": 767,
+ "name": "DELETE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 131,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ },
+ {
+ "id": 765,
+ "name": "INSERT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 129,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ },
+ {
+ "id": 766,
+ "name": "UPDATE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 130,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [764, 767, 765, 766]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 127,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L127"
+ }
+ ]
+ },
+ {
+ "id": 768,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 770,
+ "name": "JOIN",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
+ "line": 33,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ },
+ {
+ "id": 771,
+ "name": "LEAVE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
+ "line": 34,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ },
+ {
+ "id": 769,
+ "name": "SYNC",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
+ "line": 32,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L32"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [770, 771, 769]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
+ "line": 31,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L31"
+ }
+ ]
},
- "reflections": {
- "1": 0
- }
- }
- },
- {
- "id": 0,
- "name": "@supabase/realtime-js",
- "variant": "project",
- "kind": 1,
- "flags": {},
- "children": [
{
- "id": 680,
- "name": "REALTIME_LISTEN_TYPES",
+ "id": 772,
+ "name": "REALTIME_SUBSCRIBE_STATES",
"variant": "declaration",
"kind": 8,
"flags": {},
"children": [
{
- "id": 681,
- "name": "BROADCAST",
+ "id": 776,
+ "name": "CHANNEL_ERROR",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 145,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CHANNEL_ERROR"
+ }
+ },
+ {
+ "id": 775,
+ "name": "CLOSED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 144,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CLOSED"
+ }
+ },
+ {
+ "id": 773,
+ "name": "SUBSCRIBED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 142,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "SUBSCRIBED"
+ }
+ },
+ {
+ "id": 774,
+ "name": "TIMED_OUT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 143,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "TIMED_OUT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [776, 775, 773, 774]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 141,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
+ }
+ ]
+ },
+ {
+ "id": 59,
+ "name": "RealtimeChannel",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A channel is the basic building block of Realtime\nand narrows the scope of data flow to subscribed clients.\nYou can think of a channel as a chatroom where participants are able to see who's online\nand send and receive messages."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 70,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 184,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L184"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 71,
+ "name": "RealtimeChannel",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 184,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L184"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 72,
+ "name": "topic",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 73,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 444,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 74,
+ "name": "socket",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 459,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 75,
+ "name": "bindings",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 165,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 76,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 165,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L165"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 77,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 166,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 78,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 79,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 85,
+ "name": "callback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 169,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L169"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 81,
+ "name": "filter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 168,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 82,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 168,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 83,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 168,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L168"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 84,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 86,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 170,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L170"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 80,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 167,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L167"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [85, 81, 86, 80]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 166,
+ "character": 19,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L166"
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 94,
+ "name": "broadcastEndpointURL",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 180,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L180"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 89,
+ "name": "joinedOnce",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 100,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L175"
}
],
"type": {
- "type": "literal",
- "value": "broadcast"
- }
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "defaultValue": "false"
},
{
- "id": 683,
- "name": "POSTGRES_CHANGES",
+ "id": 90,
+ "name": "joinPush",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 102,
+ "line": 176,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L176"
}
],
"type": {
- "type": "literal",
- "value": "postgres_changes"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
}
},
{
- "id": 682,
- "name": "PRESENCE",
+ "id": 98,
+ "name": "params",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 187,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L187"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 444,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 93,
+ "name": "presence",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 101,
+ "line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L179"
}
],
"type": {
- "type": "literal",
- "value": "presence"
+ "type": "reference",
+ "target": 1,
+ "name": "RealtimePresence",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
}
},
{
- "id": 684,
- "name": "SYSTEM",
+ "id": 96,
+ "name": "private",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 103,
+ "line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L182"
}
],
"type": {
- "type": "literal",
- "value": "system"
+ "type": "intrinsic",
+ "name": "boolean"
}
- }
- ],
- "groups": [
- {
- "title": "Enumeration Members",
- "children": [681, 683, 682, 684]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 99,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L99"
- }
- ]
- },
- {
- "id": 685,
- "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
- "variant": "declaration",
- "kind": 8,
- "flags": {},
- "children": [
+ },
{
- "id": 686,
- "name": "ALL",
+ "id": 92,
+ "name": "pushBuffer",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 93,
+ "line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L178"
}
],
"type": {
- "type": "literal",
- "value": "*"
- }
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ "defaultValue": "[]"
},
{
- "id": 689,
- "name": "DELETE",
+ "id": 91,
+ "name": "rejoinTimer",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 96,
+ "line": 177,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L177"
}
],
"type": {
- "type": "literal",
- "value": "DELETE"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/timer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Timer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
}
},
{
- "id": 687,
- "name": "INSERT",
+ "id": 99,
+ "name": "socket",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 188,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L188"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 459,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 88,
+ "name": "state",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 94,
+ "line": 174,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L174"
}
],
"type": {
- "type": "literal",
- "value": "INSERT"
- }
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/constants.ts",
+ "qualifiedName": "CHANNEL_STATES"
+ },
+ "name": "CHANNEL_STATES",
+ "package": "@supabase/realtime-js"
+ },
+ "defaultValue": "CHANNEL_STATES.closed"
},
{
- "id": 688,
- "name": "UPDATE",
+ "id": 95,
+ "name": "subTopic",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 95,
+ "line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L181"
}
],
"type": {
- "type": "literal",
- "value": "UPDATE"
+ "type": "intrinsic",
+ "name": "string"
}
- }
- ],
- "groups": [
- {
- "title": "Enumeration Members",
- "children": [686, 689, 687, 688]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 92,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L92"
- }
- ]
- },
- {
- "id": 690,
- "name": "REALTIME_PRESENCE_LISTEN_EVENTS",
- "variant": "declaration",
- "kind": 8,
- "flags": {},
- "children": [
+ },
{
- "id": 692,
- "name": "JOIN",
+ "id": 87,
+ "name": "timeout",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
- "line": 33,
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 173,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L173"
}
],
"type": {
- "type": "literal",
- "value": "join"
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 693,
- "name": "LEAVE",
+ "id": 97,
+ "name": "topic",
"variant": "declaration",
- "kind": 16,
+ "kind": 1024,
+ "flags": {
+ "isPublic": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 186,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L186"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 326,
+ "name": "httpSend",
+ "variant": "declaration",
+ "kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
- "line": 34,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L34"
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 520,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 327,
+ "name": "httpSend",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise resolving to object with success status, and error details if failed"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 520,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L520"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 328,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the broadcast event"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 329,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Payload to be sent (required)"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 330,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options including timeout"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 331,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 332,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 523,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [332]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 523,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L523"
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 333,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 334,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": true
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [334]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 335,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 338,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 67,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 337,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 51,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 336,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 35,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": false
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [338, 337, 336]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 524,
+ "character": 33,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
}
- ],
- "type": {
- "type": "literal",
- "value": "leave"
- }
+ ]
},
{
- "id": 691,
- "name": "SYNC",
+ "id": 131,
+ "name": "on",
"variant": "declaration",
- "kind": 16,
+ "kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
- "line": 32,
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 387,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L32"
- }
- ],
- "type": {
- "type": "literal",
- "value": "sync"
- }
- }
- ],
- "groups": [
- {
- "title": "Enumeration Members",
- "children": [692, 693, 691]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
- "line": 31,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L31"
- }
- ]
- },
- {
- "id": 694,
- "name": "REALTIME_SUBSCRIBE_STATES",
- "variant": "declaration",
- "kind": 8,
- "flags": {},
- "children": [
- {
- "id": 698,
- "name": "CHANNEL_ERROR",
- "variant": "declaration",
- "kind": 16,
- "flags": {},
- "sources": [
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ },
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 110,
+ "line": 392,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
- }
- ],
- "type": {
- "type": "literal",
- "value": "CHANNEL_ERROR"
- }
- },
- {
- "id": 697,
- "name": "CLOSED",
- "variant": "declaration",
- "kind": 16,
- "flags": {},
- "sources": [
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L392"
+ },
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 109,
+ "line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L109"
- }
- ],
- "type": {
- "type": "literal",
- "value": "CLOSED"
- }
- },
- {
- "id": 695,
- "name": "SUBSCRIBED",
- "variant": "declaration",
- "kind": 16,
- "flags": {},
- "sources": [
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L397"
+ },
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 107,
+ "line": 402,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L107"
- }
- ],
- "type": {
- "type": "literal",
- "value": "SUBSCRIBED"
- }
- },
- {
- "id": 696,
- "name": "TIMED_OUT",
- "variant": "declaration",
- "kind": 16,
- "flags": {},
- "sources": [
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L402"
+ },
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 108,
+ "line": 407,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L108"
- }
- ],
- "type": {
- "type": "literal",
- "value": "TIMED_OUT"
- }
- }
- ],
- "groups": [
- {
- "title": "Enumeration Members",
- "children": [698, 697, 695, 696]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 106,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
- }
- ]
- },
- {
- "id": 59,
- "name": "RealtimeChannel",
- "variant": "declaration",
- "kind": 128,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A channel is the basic building block of Realtime\nand narrows the scope of data flow to subscribed clients.\nYou can think of a channel as a chatroom where participants are able to see who's online\nand send and receive messages."
- }
- ]
- },
- "children": [
- {
- "id": 70,
- "name": "constructor",
- "variant": "declaration",
- "kind": 512,
- "flags": {},
- "sources": [
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L407"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 412,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 417,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L417"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 428,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 441,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 454,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 463,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 472,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 481,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
+ },
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 490,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L490"
+ },
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 149,
+ "line": 495,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L495"
}
],
"signatures": [
{
- "id": 71,
- "name": "RealtimeChannel",
+ "id": 132,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 387,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L387"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 133,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 134,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 135,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 136,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 389,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [136]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 389,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L389"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 137,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 138,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 390,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 139,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 390,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L390"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 140,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 392,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L392"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 141,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 142,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 392,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L392"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 143,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 392,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L392"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 144,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 145,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 146,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 147,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 148,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 394,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L394"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [148]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 394,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L394"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 149,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 150,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 395,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L395"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 151,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 395,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L395"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 152,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 728,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 141,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceJoinPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 153,
+ "name": "on",
"variant": "signature",
- "kind": 16384,
+ "kind": 4096,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 149,
+ "line": 397,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L149"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L397"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 154,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 155,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 397,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L397"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 156,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 397,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L397"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 157,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
}
],
"parameters": [
{
- "id": 72,
- "name": "topic",
+ "id": 158,
+ "name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Topic name can be any string."
- }
- ]
- },
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "presence"
}
},
{
- "id": 73,
- "name": "params",
+ "id": 159,
+ "name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 366,
- "name": "RealtimeChannelOptions",
- "package": "@supabase/realtime-js"
- },
- "defaultValue": "..."
+ "type": "reflection",
+ "declaration": {
+ "id": 160,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 161,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 399,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L399"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [161]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 399,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L399"
+ }
+ ]
+ }
+ }
},
{
- "id": 74,
- "name": "socket",
+ "id": 162,
+ "name": "callback",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 381,
- "name": "RealtimeClient",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "type": "reflection",
+ "declaration": {
+ "id": 163,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 400,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L400"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 164,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 400,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L400"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 165,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 738,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 154,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceLeavePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
}
}
],
@@ -70670,609 +128172,395 @@
"package": "@supabase/realtime-js",
"qualifiedName": "default"
}
- }
- ]
- },
- {
- "id": 75,
- "name": "bindings",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
+ },
{
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 130,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 76,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "id": 166,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 130,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L130"
+ "line": 402,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L402"
}
],
- "indexSignatures": [
+ "typeParameters": [
{
- "id": 77,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
+ "id": 167,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 131,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
- }
- ],
- "parameters": [
- {
- "id": 78,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
"type": {
- "type": "array",
- "elementType": {
- "type": "reflection",
- "declaration": {
- "id": 79,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 85,
- "name": "callback",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 134,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L134"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Function"
- },
- "name": "Function",
- "package": "typescript"
+ "type": "reflection",
+ "declaration": {
+ "id": 168,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 402,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L402"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 169,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 402,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L402"
}
- },
- {
- "id": 81,
- "name": "filter",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 133,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L133"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 82,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 133,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L133"
- }
- ],
- "indexSignatures": [
- {
- "id": 83,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 133,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L133"
- }
- ],
- "parameters": [
- {
- "id": 84,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- ]
+ ],
+ "parameters": [
+ {
+ "id": 170,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
}
- },
- {
- "id": 86,
- "name": "id",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 135,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L135"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 171,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 172,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 687,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "*"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 173,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 174,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 405,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L405"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 175,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 405,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L405"
}
- },
- {
- "id": 80,
- "name": "type",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 132,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L132"
+ ],
+ "parameters": [
+ {
+ "id": 176,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 694,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 167,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresChangesPayload",
+ "package": "@supabase/realtime-js"
}
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
}
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [85, 81, 86, 80]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 131,
- "character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L131"
- }
- ]
- }
+ }
+ ]
}
}
}
- ]
- }
- },
- "defaultValue": "{}"
- },
- {
- "id": 94,
- "name": "broadcastEndpointURL",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 145,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L145"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 89,
- "name": "joinedOnce",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 140,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L140"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- },
- "defaultValue": "false"
- },
- {
- "id": 90,
- "name": "joinPush",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 141,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L141"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/push.ts",
- "qualifiedName": "default"
- },
- "name": "Push",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 98,
- "name": "params",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isPublic": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 152,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L152"
- }
- ],
- "type": {
- "type": "reference",
- "target": 366,
- "name": "RealtimeChannelOptions",
- "package": "@supabase/realtime-js"
- },
- "defaultValue": "..."
- },
- {
- "id": 93,
- "name": "presence",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 144,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L144"
- }
- ],
- "type": {
- "type": "reference",
- "target": 1,
- "name": "RealtimePresence",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 96,
- "name": "private",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 147,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L147"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 92,
- "name": "pushBuffer",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 143,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L143"
- }
- ],
- "type": {
- "type": "array",
- "elementType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/push.ts",
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
"qualifiedName": "default"
- },
- "name": "Push",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- "defaultValue": "[]"
- },
- {
- "id": 91,
- "name": "rejoinTimer",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 142,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L142"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/timer.ts",
- "qualifiedName": "default"
- },
- "name": "Timer",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 99,
- "name": "socket",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isPublic": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 153,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L153"
- }
- ],
- "type": {
- "type": "reference",
- "target": 381,
- "name": "RealtimeClient",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 88,
- "name": "state",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 139,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L139"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/constants.ts",
- "qualifiedName": "CHANNEL_STATES"
- },
- "name": "CHANNEL_STATES",
- "package": "@supabase/realtime-js"
- },
- "defaultValue": "CHANNEL_STATES.closed"
- },
- {
- "id": 95,
- "name": "subTopic",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 146,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L146"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 87,
- "name": "timeout",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 138,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L138"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "id": 97,
- "name": "topic",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isPublic": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Topic name can be any string."
}
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 151,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L151"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 131,
- "name": "on",
- "variant": "declaration",
- "kind": 2048,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 352,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L352"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 357,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L357"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 362,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 367,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L367"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 372,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L372"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 377,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L377"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 382,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L382"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 393,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L393"
- },
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 406,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
},
{
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 419,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "id": 177,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 407,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L407"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 178,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 179,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 407,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L407"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 180,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 407,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L407"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 181,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 182,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 183,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 687,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 184,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 185,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 410,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L410"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 186,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 410,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L410"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 187,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 699,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 178,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
},
{
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 424,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L424"
- }
- ],
- "signatures": [
- {
- "id": 132,
+ "id": 188,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -71288,77 +128576,105 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 352,
+ "line": 412,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L352"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
}
],
- "parameters": [
- {
- "id": 133,
- "name": "type",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "literal",
- "value": "presence"
- }
- },
+ "typeParameters": [
{
- "id": 134,
- "name": "filter",
- "variant": "param",
- "kind": 32768,
+ "id": 189,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
"flags": {},
"type": {
"type": "reflection",
"declaration": {
- "id": 135,
+ "id": 190,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "children": [
+ "sources": [
{
- "id": 136,
- "name": "event",
- "variant": "declaration",
- "kind": 1024,
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 412,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 191,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 354,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L354"
+ "line": 412,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 192,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
"type": {
- "type": "literal",
- "value": "sync"
+ "type": "intrinsic",
+ "name": "any"
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [136]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 354,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L354"
- }
]
}
}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 193,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
},
{
- "id": 137,
+ "id": 194,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 687,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 195,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -71366,7 +128682,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 138,
+ "id": 196,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71374,14 +128690,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 355,
+ "line": 415,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L415"
}
],
"signatures": [
{
- "id": 139,
+ "id": 197,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71389,9 +128705,33 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 355,
+ "line": 415,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L355"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L415"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 198,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 709,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 189,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresUpdatePayload",
+ "package": "@supabase/realtime-js"
+ }
}
],
"type": {
@@ -71413,7 +128753,7 @@
}
},
{
- "id": 140,
+ "id": 199,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -71429,14 +128769,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 357,
+ "line": 417,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L417"
}
],
"typeParameters": [
{
- "id": 141,
+ "id": 200,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -71444,7 +128784,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 142,
+ "id": 201,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71452,14 +128792,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 357,
+ "line": 417,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L417"
}
],
"indexSignatures": [
{
- "id": 143,
+ "id": 202,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -71467,14 +128807,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 357,
+ "line": 417,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L357"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L417"
}
],
"parameters": [
{
- "id": 144,
+ "id": 203,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -71497,33 +128837,181 @@
],
"parameters": [
{
- "id": 145,
+ "id": 204,
"name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "literal",
- "value": "presence"
+ "value": "postgres_changes"
}
},
{
- "id": 146,
+ "id": 205,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
+ "type": {
+ "type": "reference",
+ "target": 687,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 206,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
"type": {
"type": "reflection",
"declaration": {
- "id": 147,
+ "id": 207,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 420,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L420"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 208,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 420,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L420"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 209,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 718,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 200,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 59,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 210,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 428,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L428"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 211,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of \"broadcast\", \"presence\", or \"postgres_changes\"."
+ }
+ ]
+ },
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 212,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom object specific to the Realtime feature detailing which payloads to receive."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 213,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 148,
+ "id": 214,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -71531,44 +129019,52 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 359,
+ "line": 430,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L430"
}
],
"type": {
- "type": "literal",
- "value": "join"
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [148]
+ "children": [214]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 359,
+ "line": 430,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L359"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L430"
}
]
}
}
},
{
- "id": 149,
+ "id": 215,
"name": "callback",
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Function to be invoked when event handler is triggered."
+ }
+ ]
+ },
"type": {
"type": "reflection",
"declaration": {
- "id": 150,
+ "id": 216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71576,14 +129072,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 360,
+ "line": 431,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"signatures": [
{
- "id": 151,
+ "id": 217,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71591,32 +129087,198 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 360,
+ "line": 431,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L360"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
}
],
"parameters": [
{
- "id": 152,
+ "id": 218,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 650,
- "typeArguments": [
- {
- "type": "reference",
- "target": 141,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePresenceJoinPayload",
- "package": "@supabase/realtime-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 219,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 221,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 433,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L433"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 222,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 434,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 223,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 225,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 436,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L436"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 224,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 435,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L435"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [225, 224]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 434,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L434"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 220,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 432,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L432"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [221, 222, 220]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 431,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L431"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 226,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 438,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L438"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 227,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
}
}
],
@@ -71639,7 +129301,7 @@
}
},
{
- "id": 153,
+ "id": 228,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -71655,14 +129317,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 362,
+ "line": 441,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"typeParameters": [
{
- "id": 154,
+ "id": 229,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -71670,7 +129332,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 155,
+ "id": 230,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71678,14 +129340,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 362,
+ "line": 441,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"indexSignatures": [
{
- "id": 156,
+ "id": 231,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -71693,14 +129355,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 362,
+ "line": 441,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L441"
}
],
"parameters": [
{
- "id": 157,
+ "id": 232,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -71723,18 +129385,18 @@
],
"parameters": [
{
- "id": 158,
+ "id": 233,
"name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "literal",
- "value": "presence"
+ "value": "broadcast"
}
},
{
- "id": 159,
+ "id": 234,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -71742,14 +129404,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 160,
+ "id": 235,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 161,
+ "id": 236,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -71757,36 +129419,36 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 364,
+ "line": 443,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L443"
}
],
"type": {
- "type": "literal",
- "value": "leave"
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [161]
+ "children": [236]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 364,
+ "line": 443,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L364"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L443"
}
]
}
}
},
{
- "id": 162,
+ "id": 237,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -71794,7 +129456,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 163,
+ "id": 238,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -71802,14 +129464,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 365,
+ "line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"signatures": [
{
- "id": 164,
+ "id": 239,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -71817,32 +129479,186 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 365,
+ "line": 444,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
}
],
"parameters": [
{
- "id": 165,
+ "id": 240,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 660,
- "typeArguments": [
- {
- "type": "reference",
- "target": 154,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePresenceLeavePayload",
- "package": "@supabase/realtime-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 241,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 243,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 446,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L446"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 244,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 447,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 245,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 247,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 449,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 246,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 448,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L448"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [247, 246]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 447,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 248,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 451,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L451"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 229,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 242,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 445,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L445"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [243, 244, 248, 242]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 444,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L444"
+ }
+ ]
+ }
}
}
],
@@ -71865,7 +129681,7 @@
}
},
{
- "id": 166,
+ "id": 249,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -71881,298 +129697,108 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 367,
+ "line": 454,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L367"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
}
],
"typeParameters": [
{
- "id": 167,
+ "id": 250,
"name": "T",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"type": {
- "type": "reflection",
- "declaration": {
- "id": 168,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 367,
- "character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L367"
- }
- ],
- "indexSignatures": [
- {
- "id": 169,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 367,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L367"
- }
- ],
- "parameters": [
- {
- "id": 170,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- ]
- }
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
}
}
],
"parameters": [
{
- "id": 171,
+ "id": 251,
"name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "literal",
- "value": "postgres_changes"
+ "value": "broadcast"
}
},
{
- "id": 172,
+ "id": 252,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
- "type": {
- "type": "reference",
- "target": 609,
- "typeArguments": [
- {
- "type": "literal",
- "value": "*"
- }
- ],
- "name": "RealtimePostgresChangesFilter",
- "package": "@supabase/realtime-js"
- }
- },
- {
- "id": 173,
- "name": "callback",
- "variant": "param",
- "kind": 32768,
- "flags": {},
"type": {
"type": "reflection",
"declaration": {
- "id": 174,
+ "id": 253,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 370,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L370"
- }
- ],
- "signatures": [
+ "children": [
{
- "id": 175,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "id": 254,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 370,
+ "line": 456,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L370"
- }
- ],
- "parameters": [
- {
- "id": 176,
- "name": "payload",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 616,
- "typeArguments": [
- {
- "type": "reference",
- "target": 167,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePostgresChangesPayload",
- "package": "@supabase/realtime-js"
- }
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L456"
}
],
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "reference",
+ "target": 764,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
}
}
- ]
- }
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 59,
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 177,
- "name": "on",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an event handler that listens to changes."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 372,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L372"
- }
- ],
- "typeParameters": [
- {
- "id": 178,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 179,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
+ ],
+ "groups": [
{
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 372,
- "character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L372"
+ "title": "Properties",
+ "children": [254]
}
],
- "indexSignatures": [
+ "sources": [
{
- "id": 180,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 372,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L372"
- }
- ],
- "parameters": [
- {
- "id": 181,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 456,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L456"
}
]
}
}
- }
- ],
- "parameters": [
- {
- "id": 182,
- "name": "type",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "literal",
- "value": "postgres_changes"
- }
- },
- {
- "id": 183,
- "name": "filter",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 609,
- "typeArguments": [
- {
- "type": "literal",
- "value": "INSERT"
- }
- ],
- "name": "RealtimePostgresChangesFilter",
- "package": "@supabase/realtime-js"
- }
},
{
- "id": 184,
+ "id": 255,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -72180,7 +129806,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 185,
+ "id": 256,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72188,14 +129814,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 375,
+ "line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"signatures": [
{
- "id": 186,
+ "id": 257,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -72203,32 +129829,117 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 375,
+ "line": 457,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L375"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
}
],
"parameters": [
{
- "id": 187,
+ "id": 258,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 621,
- "typeArguments": [
- {
- "type": "reference",
- "target": 178,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePostgresInsertPayload",
- "package": "@supabase/realtime-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 259,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 261,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 459,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L459"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 764,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
+ }
+ },
+ {
+ "id": 262,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 460,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L460"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 250,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 260,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 458,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L458"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [261, 262, 260]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 457,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L457"
+ }
+ ]
+ }
}
}
],
@@ -72251,7 +129962,7 @@
}
},
{
- "id": 188,
+ "id": 263,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -72267,14 +129978,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 377,
+ "line": 463,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"typeParameters": [
{
- "id": 189,
+ "id": 264,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -72282,7 +129993,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 190,
+ "id": 265,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72290,14 +130001,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 377,
+ "line": 463,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"indexSignatures": [
{
- "id": 191,
+ "id": 266,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -72305,14 +130016,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 377,
+ "line": 463,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L377"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L463"
}
],
"parameters": [
{
- "id": 192,
+ "id": 267,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -72335,37 +130046,73 @@
],
"parameters": [
{
- "id": 193,
+ "id": 268,
"name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "literal",
- "value": "postgres_changes"
+ "value": "broadcast"
}
},
{
- "id": 194,
+ "id": 269,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 609,
- "typeArguments": [
- {
- "type": "literal",
- "value": "UPDATE"
- }
- ],
- "name": "RealtimePostgresChangesFilter",
- "package": "@supabase/realtime-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 270,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 271,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 465,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 765,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [271]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 465,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L465"
+ }
+ ]
+ }
}
},
{
- "id": 195,
+ "id": 272,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -72373,7 +130120,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 196,
+ "id": 273,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72381,14 +130128,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 380,
+ "line": 466,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L466"
}
],
"signatures": [
{
- "id": 197,
+ "id": 274,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -72396,32 +130143,117 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 380,
+ "line": 466,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L380"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L466"
}
],
"parameters": [
{
- "id": 198,
+ "id": 275,
"name": "payload",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
- "type": "reference",
- "target": 631,
- "typeArguments": [
- {
- "type": "reference",
- "target": 189,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePostgresUpdatePayload",
- "package": "@supabase/realtime-js"
+ "type": "reflection",
+ "declaration": {
+ "id": 276,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 278,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 468,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L468"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 765,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ },
+ {
+ "id": 279,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 469,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L469"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastInsertPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 264,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 277,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 467,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L467"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [278, 279, 277]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
+ "line": 466,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L466"
+ }
+ ]
+ }
}
}
],
@@ -72444,7 +130276,7 @@
}
},
{
- "id": 199,
+ "id": 280,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -72460,14 +130292,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 382,
+ "line": 472,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"typeParameters": [
{
- "id": 200,
+ "id": 281,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -72475,7 +130307,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 201,
+ "id": 282,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72483,14 +130315,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 382,
+ "line": 472,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"indexSignatures": [
{
- "id": 202,
+ "id": 283,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -72498,14 +130330,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 382,
+ "line": 472,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L382"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L472"
}
],
"parameters": [
{
- "id": 203,
+ "id": 284,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -72528,181 +130360,33 @@
],
"parameters": [
{
- "id": 204,
- "name": "type",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "literal",
- "value": "postgres_changes"
- }
- },
- {
- "id": 205,
- "name": "filter",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 609,
- "typeArguments": [
- {
- "type": "literal",
- "value": "DELETE"
- }
- ],
- "name": "RealtimePostgresChangesFilter",
- "package": "@supabase/realtime-js"
- }
- },
- {
- "id": 206,
- "name": "callback",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 207,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 385,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L385"
- }
- ],
- "signatures": [
- {
- "id": 208,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 385,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L385"
- }
- ],
- "parameters": [
- {
- "id": 209,
- "name": "payload",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 640,
- "typeArguments": [
- {
- "type": "reference",
- "target": 200,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RealtimePostgresDeletePayload",
- "package": "@supabase/realtime-js"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "void"
- }
- }
- ]
- }
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 59,
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 210,
- "name": "on",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 393,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L393"
- }
- ],
- "parameters": [
- {
- "id": 211,
+ "id": 285,
"name": "type",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "One of \"broadcast\", \"presence\", or \"postgres_changes\"."
- }
- ]
- },
"type": {
"type": "literal",
"value": "broadcast"
}
},
{
- "id": 212,
+ "id": 286,
"name": "filter",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Custom object specific to the Realtime feature detailing which payloads to receive."
- }
- ]
- },
"type": {
"type": "reflection",
"declaration": {
- "id": 213,
+ "id": 287,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 214,
+ "id": 288,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -72710,52 +130394,47 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 395,
+ "line": 474,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 766,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [214]
+ "children": [288]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 395,
+ "line": 474,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L395"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L474"
}
]
}
}
},
{
- "id": 215,
+ "id": 289,
"name": "callback",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Function to be invoked when event handler is triggered."
- }
- ]
- },
"type": {
"type": "reflection",
"declaration": {
- "id": 216,
+ "id": 290,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -72763,14 +130442,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 396,
+ "line": 475,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"signatures": [
{
- "id": 217,
+ "id": 291,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -72778,14 +130457,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 396,
+ "line": 475,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L396"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
],
"parameters": [
{
- "id": 218,
+ "id": 292,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -72793,14 +130472,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 219,
+ "id": 293,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 221,
+ "id": 295,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -72808,101 +130487,54 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 398,
+ "line": 477,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L398"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L477"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 766,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
}
},
{
- "id": 222,
- "name": "meta",
+ "id": 296,
+ "name": "payload",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 399,
+ "line": 478,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L399"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L478"
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 223,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 225,
- "name": "id",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 401,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L401"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 224,
- "name": "replayed",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 400,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L400"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [225, 224]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 399,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L399"
- }
- ]
- }
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastUpdatePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 281,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastUpdatePayload",
+ "package": "@supabase/realtime-js"
}
},
{
- "id": 220,
+ "id": 294,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -72910,9 +130542,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 397,
+ "line": 476,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L397"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L476"
}
],
"type": {
@@ -72924,49 +130556,15 @@
"groups": [
{
"title": "Properties",
- "children": [221, 222, 220]
+ "children": [295, 296, 294]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 396,
+ "line": 475,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L396"
- }
- ],
- "indexSignatures": [
- {
- "id": 226,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 403,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L403"
- }
- ],
- "parameters": [
- {
- "id": 227,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L475"
}
]
}
@@ -72992,7 +130590,7 @@
}
},
{
- "id": 228,
+ "id": 297,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -73008,14 +130606,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 406,
+ "line": 481,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"typeParameters": [
{
- "id": 229,
+ "id": 298,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -73023,7 +130621,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 230,
+ "id": 299,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73031,14 +130629,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 406,
+ "line": 481,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"indexSignatures": [
{
- "id": 231,
+ "id": 300,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -73046,14 +130644,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 406,
+ "line": 481,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L406"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L481"
}
],
"parameters": [
{
- "id": 232,
+ "id": 301,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -73076,7 +130674,7 @@
],
"parameters": [
{
- "id": 233,
+ "id": 302,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -73087,7 +130685,7 @@
}
},
{
- "id": 234,
+ "id": 303,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -73095,14 +130693,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 235,
+ "id": 304,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 236,
+ "id": 305,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -73110,36 +130708,39 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 408,
+ "line": 483,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L408"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 767,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [236]
+ "children": [305]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 408,
+ "line": 483,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L408"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L483"
}
]
}
}
},
{
- "id": 237,
+ "id": 306,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -73147,7 +130748,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 238,
+ "id": 307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73155,14 +130756,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 409,
+ "line": 484,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
],
"signatures": [
{
- "id": 239,
+ "id": 308,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -73170,14 +130771,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 409,
+ "line": 484,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
],
"parameters": [
{
- "id": 240,
+ "id": 309,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -73185,14 +130786,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 241,
+ "id": 310,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 243,
+ "id": 312,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -73200,101 +130801,21 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 411,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L411"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 244,
- "name": "meta",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 412,
+ "line": 486,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L486"
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 245,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 247,
- "name": "id",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 414,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L414"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 246,
- "name": "replayed",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 413,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L413"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [247, 246]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 412,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L412"
- }
- ]
- }
+ "type": "reference",
+ "target": 767,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
}
},
{
- "id": 248,
+ "id": 313,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -73302,21 +130823,32 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 416,
+ "line": 487,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L416"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L487"
}
],
"type": {
"type": "reference",
- "target": 229,
- "name": "T",
- "package": "@supabase/realtime-js",
- "refersToTypeParameter": true
+ "target": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastDeletePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 298,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastDeletePayload",
+ "package": "@supabase/realtime-js"
}
},
{
- "id": 242,
+ "id": 311,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -73324,9 +130856,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 410,
+ "line": 485,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L410"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L485"
}
],
"type": {
@@ -73338,15 +130870,15 @@
"groups": [
{
"title": "Properties",
- "children": [243, 244, 248, 242]
+ "children": [312, 313, 311]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 409,
+ "line": 484,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L409"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L484"
}
]
}
@@ -73372,7 +130904,7 @@
}
},
{
- "id": 249,
+ "id": 314,
"name": "on",
"variant": "signature",
"kind": 4096,
@@ -73388,14 +130920,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 419,
+ "line": 490,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L490"
}
],
"typeParameters": [
{
- "id": 250,
+ "id": 315,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -73403,7 +130935,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 251,
+ "id": 316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73411,14 +130943,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 419,
+ "line": 490,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L490"
}
],
"indexSignatures": [
{
- "id": 252,
+ "id": 317,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -73426,14 +130958,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 419,
+ "line": 490,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L419"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L490"
}
],
"parameters": [
{
- "id": 253,
+ "id": 318,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -73456,7 +130988,7 @@
],
"parameters": [
{
- "id": 254,
+ "id": 319,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -73467,7 +130999,7 @@
}
},
{
- "id": 255,
+ "id": 320,
"name": "filter",
"variant": "param",
"kind": 32768,
@@ -73475,7 +131007,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 256,
+ "id": 321,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73484,7 +131016,7 @@
}
},
{
- "id": 257,
+ "id": 322,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -73492,7 +131024,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 258,
+ "id": 323,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73500,14 +131032,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 422,
+ "line": 493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
],
"signatures": [
{
- "id": 259,
+ "id": 324,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -73515,14 +131047,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 422,
+ "line": 493,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L422"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L493"
}
],
"parameters": [
{
- "id": 260,
+ "id": 325,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -73562,9 +131094,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 321,
+ "line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L356"
}
],
"signatures": [
@@ -73577,9 +131109,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 321,
+ "line": 356,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L356"
}
],
"typeParameters": [
@@ -73600,9 +131132,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 321,
+ "line": 356,
"character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L356"
}
],
"indexSignatures": [
@@ -73615,9 +131147,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 321,
+ "line": 356,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L321"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L356"
}
],
"parameters": [
@@ -73655,7 +131187,7 @@
],
"type": {
"type": "reference",
- "target": 670,
+ "target": 748,
"typeArguments": [
{
"type": "reference",
@@ -73672,7 +131204,7 @@
]
},
{
- "id": 261,
+ "id": 339,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -73680,14 +131212,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 447,
+ "line": 580,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L580"
}
],
"signatures": [
{
- "id": 262,
+ "id": 340,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -73703,14 +131235,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 447,
+ "line": 580,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L447"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L580"
}
],
"parameters": [
{
- "id": 263,
+ "id": 341,
"name": "args",
"variant": "param",
"kind": 32768,
@@ -73726,14 +131258,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 264,
+ "id": 342,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 266,
+ "id": 344,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -73749,9 +131281,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 450,
+ "line": 583,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L450"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L583"
}
],
"type": {
@@ -73760,7 +131292,7 @@
}
},
{
- "id": 267,
+ "id": 345,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -73778,9 +131310,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 451,
+ "line": 584,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L451"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L584"
}
],
"type": {
@@ -73789,7 +131321,7 @@
}
},
{
- "id": 265,
+ "id": 343,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -73805,9 +131337,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 449,
+ "line": 582,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L582"
}
],
"type": {
@@ -73832,20 +131364,20 @@
"groups": [
{
"title": "Properties",
- "children": [266, 267, 265]
+ "children": [344, 345, 343]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 448,
+ "line": 581,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L448"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L581"
}
],
"indexSignatures": [
{
- "id": 268,
+ "id": 346,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -73853,14 +131385,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 452,
+ "line": 585,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L452"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L585"
}
],
"parameters": [
{
- "id": 269,
+ "id": 347,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -73881,7 +131413,7 @@
}
},
{
- "id": 270,
+ "id": 348,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -73897,7 +131429,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 271,
+ "id": 349,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -73905,14 +131437,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 454,
+ "line": 587,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L587"
}
],
"indexSignatures": [
{
- "id": 272,
+ "id": 350,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -73920,14 +131452,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 454,
+ "line": 587,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L454"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L587"
}
],
"parameters": [
{
- "id": 273,
+ "id": 351,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -73958,7 +131490,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 380,
+ "target": 458,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -73978,9 +131510,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 219,
+ "line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L254"
}
],
"signatures": [
@@ -74001,9 +131533,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 219,
+ "line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L219"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L254"
}
],
"parameters": [
@@ -74026,9 +131558,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 220,
+ "line": 255,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L255"
}
],
"signatures": [
@@ -74041,9 +131573,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 220,
+ "line": 255,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L255"
}
],
"parameters": [
@@ -74055,7 +131587,7 @@
"flags": {},
"type": {
"type": "reference",
- "target": 694,
+ "target": 772,
"name": "REALTIME_SUBSCRIBE_STATES",
"package": "@supabase/realtime-js"
}
@@ -74112,7 +131644,7 @@
]
},
{
- "id": 283,
+ "id": 361,
"name": "teardown",
"variant": "declaration",
"kind": 2048,
@@ -74120,14 +131652,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 563,
+ "line": 702,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L702"
}
],
"signatures": [
{
- "id": 284,
+ "id": 362,
"name": "teardown",
"variant": "signature",
"kind": 4096,
@@ -74143,9 +131675,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 563,
+ "line": 702,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L563"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L702"
}
],
"type": {
@@ -74164,9 +131696,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 325,
+ "line": 360,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L360"
}
],
"signatures": [
@@ -74179,9 +131711,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 325,
+ "line": 360,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L325"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L360"
}
],
"parameters": [
@@ -74202,9 +131734,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 326,
+ "line": 361,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L326"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L361"
}
],
"indexSignatures": [
@@ -74217,9 +131749,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 326,
+ "line": 361,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L326"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L361"
}
],
"parameters": [
@@ -74261,9 +131793,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 327,
+ "line": 362,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
}
],
"indexSignatures": [
@@ -74276,9 +131808,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 327,
+ "line": 362,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L327"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L362"
}
],
"parameters": [
@@ -74314,7 +131846,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 380,
+ "target": 458,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -74326,7 +131858,7 @@
]
},
{
- "id": 280,
+ "id": 358,
"name": "unsubscribe",
"variant": "declaration",
"kind": 2048,
@@ -74334,14 +131866,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 524,
+ "line": 663,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L663"
}
],
"signatures": [
{
- "id": 281,
+ "id": 359,
"name": "unsubscribe",
"variant": "signature",
"kind": 4096,
@@ -74365,14 +131897,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 524,
+ "line": 663,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L524"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L663"
}
],
"parameters": [
{
- "id": 282,
+ "id": 360,
"name": "timeout",
"variant": "param",
"kind": 32768,
@@ -74424,9 +131956,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 339,
+ "line": 374,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L374"
}
],
"signatures": [
@@ -74439,9 +131971,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 339,
+ "line": 374,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L374"
}
],
"parameters": [
@@ -74462,9 +131994,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 339,
+ "line": 374,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L374"
}
],
"indexSignatures": [
@@ -74477,9 +132009,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 339,
+ "line": 374,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L374"
}
],
"parameters": [
@@ -74515,7 +132047,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 380,
+ "target": 458,
"name": "RealtimeChannelSendResponse",
"package": "@supabase/realtime-js"
}
@@ -74527,7 +132059,7 @@
]
},
{
- "id": 274,
+ "id": 352,
"name": "updateJoinPayload",
"variant": "declaration",
"kind": 2048,
@@ -74535,14 +132067,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 511,
+ "line": 650,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L650"
}
],
"signatures": [
{
- "id": 275,
+ "id": 353,
"name": "updateJoinPayload",
"variant": "signature",
"kind": 4096,
@@ -74550,14 +132082,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 511,
+ "line": 650,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L650"
}
],
"parameters": [
{
- "id": 276,
+ "id": 354,
"name": "payload",
"variant": "param",
"kind": 32768,
@@ -74565,7 +132097,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 277,
+ "id": 355,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74573,14 +132105,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 511,
+ "line": 650,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L650"
}
],
"indexSignatures": [
{
- "id": 278,
+ "id": 356,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -74588,14 +132120,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 511,
+ "line": 650,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L511"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L650"
}
],
"parameters": [
{
- "id": 279,
+ "id": 357,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -74635,27 +132167,27 @@
},
{
"title": "Methods",
- "children": [131, 108, 261, 100, 283, 115, 280, 125, 274]
+ "children": [326, 131, 108, 339, 100, 361, 115, 358, 125, 352]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 129,
+ "line": 164,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L164"
}
]
},
{
- "id": 381,
+ "id": 459,
"name": "RealtimeClient",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 382,
+ "id": 460,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -74665,12 +132197,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 159,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L159"
}
],
"signatures": [
{
- "id": 383,
+ "id": 461,
"name": "RealtimeClient",
"variant": "signature",
"kind": 16384,
@@ -74688,12 +132220,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 159,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L159"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L159"
}
],
"parameters": [
{
- "id": 384,
+ "id": 462,
"name": "endPoint",
"variant": "param",
"kind": 32768,
@@ -74712,7 +132244,7 @@
}
},
{
- "id": 385,
+ "id": 463,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -74721,7 +132253,7 @@
},
"type": {
"type": "reference",
- "target": 573,
+ "target": 651,
"name": "RealtimeClientOptions",
"package": "@supabase/realtime-js",
"highlightedProperties": {
@@ -74817,7 +132349,7 @@
],
"type": {
"type": "reference",
- "target": 381,
+ "target": 459,
"name": "RealtimeClient",
"package": "@supabase/realtime-js",
"qualifiedName": "default"
@@ -74826,7 +132358,7 @@
]
},
{
- "id": 432,
+ "id": 510,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -74836,7 +132368,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -74849,7 +132381,7 @@
{
"type": "reflection",
"declaration": {
- "id": 433,
+ "id": 511,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -74859,12 +132391,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"signatures": [
{
- "id": 434,
+ "id": 512,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -74874,7 +132406,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 132,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L132"
}
],
"type": {
@@ -74910,7 +132442,7 @@
"defaultValue": "null"
},
{
- "id": 386,
+ "id": 464,
"name": "accessTokenValue",
"variant": "declaration",
"kind": 1024,
@@ -74920,7 +132452,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 96,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L96"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L96"
}
],
"type": {
@@ -74939,7 +132471,7 @@
"defaultValue": "null"
},
{
- "id": 387,
+ "id": 465,
"name": "apiKey",
"variant": "declaration",
"kind": 1024,
@@ -74949,7 +132481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 97,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L97"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L97"
}
],
"type": {
@@ -74968,7 +132500,7 @@
"defaultValue": "null"
},
{
- "id": 388,
+ "id": 466,
"name": "channels",
"variant": "declaration",
"kind": 1024,
@@ -74978,7 +132510,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 98,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L98"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L98"
}
],
"type": {
@@ -74994,7 +132526,7 @@
"defaultValue": "..."
},
{
- "id": 415,
+ "id": 493,
"name": "conn",
"variant": "declaration",
"kind": 1024,
@@ -75004,7 +132536,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 117,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L117"
}
],
"type": {
@@ -75016,7 +132548,7 @@
},
{
"type": "reference",
- "target": 717,
+ "target": 795,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -75025,7 +132557,7 @@
"defaultValue": "null"
},
{
- "id": 413,
+ "id": 491,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -75035,7 +132567,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 115,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L115"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L115"
}
],
"type": {
@@ -75049,7 +132581,7 @@
}
},
{
- "id": 412,
+ "id": 490,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -75059,7 +132591,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L114"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L114"
}
],
"type": {
@@ -75073,7 +132605,7 @@
}
},
{
- "id": 389,
+ "id": 467,
"name": "endPoint",
"variant": "declaration",
"kind": 1024,
@@ -75083,7 +132615,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 99,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L99"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L99"
}
],
"type": {
@@ -75093,7 +132625,7 @@
"defaultValue": "''"
},
{
- "id": 424,
+ "id": 502,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -75103,13 +132635,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 131,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L131"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L131"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 425,
+ "id": 503,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75121,14 +132653,14 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"signatures": [
{
- "id": 426,
+ "id": 504,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -75150,7 +132682,7 @@
],
"parameters": [
{
- "id": 427,
+ "id": 505,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -75162,25 +132694,25 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
+ "qualifiedName": "URL"
},
- "name": "RequestInfo",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "RequestInfo"
},
- "name": "URL",
+ "name": "RequestInfo",
"package": "typescript"
}
]
}
},
{
- "id": 428,
+ "id": 506,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -75220,7 +132752,7 @@
}
},
{
- "id": 429,
+ "id": 507,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -75235,14 +132767,14 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"parameters": [
{
- "id": 430,
+ "id": 508,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -75258,25 +132790,25 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
+ "qualifiedName": "URL"
},
- "name": "Request",
+ "name": "URL",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
+ "qualifiedName": "Request"
},
- "name": "URL",
+ "name": "Request",
"package": "typescript"
}
]
}
},
{
- "id": 431,
+ "id": 509,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -75320,7 +132852,7 @@
}
},
{
- "id": 391,
+ "id": 469,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -75346,13 +132878,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 392,
+ "id": 470,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75362,12 +132894,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
],
"indexSignatures": [
{
- "id": 393,
+ "id": 471,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -75377,12 +132909,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 102,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L102"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L102"
}
],
"parameters": [
{
- "id": 394,
+ "id": 472,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -75404,7 +132936,7 @@
"defaultValue": "{}"
},
{
- "id": 404,
+ "id": 482,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -75414,13 +132946,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 405,
+ "id": 483,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75430,12 +132962,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"signatures": [
{
- "id": 406,
+ "id": 484,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -75445,12 +132977,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 109,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L109"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L109"
}
],
"parameters": [
{
- "id": 407,
+ "id": 485,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -75477,7 +133009,7 @@
"defaultValue": "noop"
},
{
- "id": 401,
+ "id": 479,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -75487,7 +133019,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 106,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L106"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L106"
}
],
"type": {
@@ -75497,7 +133029,7 @@
"defaultValue": "CONNECTION_TIMEOUTS.HEARTBEAT_INTERVAL"
},
{
- "id": 402,
+ "id": 480,
"name": "heartbeatTimer",
"variant": "declaration",
"kind": 1024,
@@ -75507,7 +133039,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 107,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L107"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L107"
}
],
"type": {
@@ -75532,7 +133064,7 @@
"defaultValue": "undefined"
},
{
- "id": 390,
+ "id": 468,
"name": "httpEndpoint",
"variant": "declaration",
"kind": 1024,
@@ -75542,7 +133074,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 100,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L100"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L100"
}
],
"type": {
@@ -75552,7 +133084,7 @@
"defaultValue": "''"
},
{
- "id": 410,
+ "id": 488,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -75562,7 +133094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 112,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L112"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L112"
}
],
"type": {
@@ -75577,7 +133109,7 @@
"defaultValue": "noop"
},
{
- "id": 411,
+ "id": 489,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -75589,7 +133121,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 113,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L113"
}
],
"type": {
@@ -75603,7 +133135,7 @@
}
},
{
- "id": 395,
+ "id": 473,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -75615,13 +133147,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 396,
+ "id": 474,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -75631,12 +133163,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"indexSignatures": [
{
- "id": 397,
+ "id": 475,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -75646,12 +133178,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 103,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L103"
}
],
"parameters": [
{
- "id": 398,
+ "id": 476,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -75673,7 +133205,7 @@
"defaultValue": "{}"
},
{
- "id": 403,
+ "id": 481,
"name": "pendingHeartbeatRef",
"variant": "declaration",
"kind": 1024,
@@ -75683,7 +133215,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 108,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L108"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L108"
}
],
"type": {
@@ -75702,7 +133234,7 @@
"defaultValue": "null"
},
{
- "id": 414,
+ "id": 492,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -75712,7 +133244,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 116,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L116"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L116"
}
],
"type": {
@@ -75726,7 +133258,7 @@
}
},
{
- "id": 409,
+ "id": 487,
"name": "reconnectTimer",
"variant": "declaration",
"kind": 1024,
@@ -75736,7 +133268,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 111,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L111"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L111"
}
],
"type": {
@@ -75761,7 +133293,7 @@
"defaultValue": "null"
},
{
- "id": 408,
+ "id": 486,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -75771,7 +133303,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L110"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L110"
}
],
"type": {
@@ -75781,7 +133313,7 @@
"defaultValue": "0"
},
{
- "id": 416,
+ "id": 494,
"name": "sendBuffer",
"variant": "declaration",
"kind": 1024,
@@ -75791,7 +133323,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L118"
}
],
"type": {
@@ -75809,7 +133341,7 @@
"defaultValue": "[]"
},
{
- "id": 417,
+ "id": 495,
"name": "serializer",
"variant": "declaration",
"kind": 1024,
@@ -75819,7 +133351,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 119,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L119"
}
],
"type": {
@@ -75835,7 +133367,7 @@
"defaultValue": "..."
},
{
- "id": 418,
+ "id": 496,
"name": "stateChangeCallbacks",
"variant": "declaration",
"kind": 1024,
@@ -75845,20 +133377,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 419,
+ "id": 497,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 421,
+ "id": 499,
"name": "close",
"variant": "declaration",
"kind": 1024,
@@ -75868,7 +133400,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 122,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L122"
}
],
"type": {
@@ -75885,7 +133417,7 @@
}
},
{
- "id": 422,
+ "id": 500,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -75895,7 +133427,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 123,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L123"
}
],
"type": {
@@ -75912,7 +133444,7 @@
}
},
{
- "id": 423,
+ "id": 501,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -75922,7 +133454,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 124,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L124"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L124"
}
],
"type": {
@@ -75939,7 +133471,7 @@
}
},
{
- "id": 420,
+ "id": 498,
"name": "open",
"variant": "declaration",
"kind": 1024,
@@ -75949,7 +133481,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 121,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L121"
}
],
"type": {
@@ -75969,7 +133501,7 @@
"groups": [
{
"title": "Properties",
- "children": [421, 422, 423, 420]
+ "children": [499, 500, 501, 498]
}
],
"sources": [
@@ -75977,7 +133509,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 120,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L120"
}
]
}
@@ -75985,7 +133517,7 @@
"defaultValue": "..."
},
{
- "id": 399,
+ "id": 477,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -75995,7 +133527,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 104,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L104"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L104"
}
],
"type": {
@@ -76005,7 +133537,7 @@
"defaultValue": "DEFAULT_TIMEOUT"
},
{
- "id": 400,
+ "id": 478,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -76015,7 +133547,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 105,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L105"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L105"
}
],
"type": {
@@ -76027,7 +133559,7 @@
},
{
"type": "reference",
- "target": 767,
+ "target": 845,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
@@ -76036,7 +133568,7 @@
"defaultValue": "null"
},
{
- "id": 435,
+ "id": 513,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -76048,7 +133580,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 133,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L133"
}
],
"type": {
@@ -76057,7 +133589,7 @@
}
},
{
- "id": 437,
+ "id": 515,
"name": "workerRef",
"variant": "declaration",
"kind": 1024,
@@ -76069,7 +133601,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L135"
}
],
"type": {
@@ -76083,7 +133615,7 @@
}
},
{
- "id": 436,
+ "id": 514,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -76095,7 +133627,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 134,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L134"
}
],
"type": {
@@ -76104,7 +133636,7 @@
}
},
{
- "id": 469,
+ "id": 547,
"name": "channel",
"variant": "declaration",
"kind": 2048,
@@ -76114,12 +133646,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L346"
}
],
"signatures": [
{
- "id": 470,
+ "id": 548,
"name": "channel",
"variant": "signature",
"kind": 4096,
@@ -76129,12 +133661,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 346,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L346"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L346"
}
],
"parameters": [
{
- "id": 471,
+ "id": 549,
"name": "topic",
"variant": "param",
"kind": 32768,
@@ -76145,14 +133677,14 @@
}
},
{
- "id": 472,
+ "id": 550,
"name": "params",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 366,
+ "target": 444,
"name": "RealtimeChannelOptions",
"package": "@supabase/realtime-js"
},
@@ -76170,7 +133702,7 @@
]
},
{
- "id": 441,
+ "id": 519,
"name": "connect",
"variant": "declaration",
"kind": 2048,
@@ -76180,12 +133712,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L178"
}
],
"signatures": [
{
- "id": 442,
+ "id": 520,
"name": "connect",
"variant": "signature",
"kind": 4096,
@@ -76203,7 +133735,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 178,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L178"
}
],
"type": {
@@ -76214,7 +133746,7 @@
]
},
{
- "id": 461,
+ "id": 539,
"name": "connectionState",
"variant": "declaration",
"kind": 2048,
@@ -76224,12 +133756,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 312,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L312"
}
],
"signatures": [
{
- "id": 462,
+ "id": 540,
"name": "connectionState",
"variant": "signature",
"kind": 4096,
@@ -76247,7 +133779,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 312,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L312"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L312"
}
],
"type": {
@@ -76263,7 +133795,7 @@
]
},
{
- "id": 445,
+ "id": 523,
"name": "disconnect",
"variant": "declaration",
"kind": 2048,
@@ -76273,12 +133805,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L238"
}
],
"signatures": [
{
- "id": 446,
+ "id": 524,
"name": "disconnect",
"variant": "signature",
"kind": 4096,
@@ -76296,12 +133828,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 238,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L238"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L238"
}
],
"parameters": [
{
- "id": 447,
+ "id": 525,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -76322,7 +133854,7 @@
}
},
{
- "id": 448,
+ "id": 526,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -76351,7 +133883,7 @@
]
},
{
- "id": 443,
+ "id": 521,
"name": "endpointURL",
"variant": "declaration",
"kind": 2048,
@@ -76361,12 +133893,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 228,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L228"
}
],
"signatures": [
{
- "id": 444,
+ "id": 522,
"name": "endpointURL",
"variant": "signature",
"kind": 4096,
@@ -76395,7 +133927,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 228,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L228"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L228"
}
],
"type": {
@@ -76406,7 +133938,7 @@
]
},
{
- "id": 487,
+ "id": 565,
"name": "flushSendBuffer",
"variant": "declaration",
"kind": 2048,
@@ -76416,12 +133948,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L455"
}
],
"signatures": [
{
- "id": 488,
+ "id": 566,
"name": "flushSendBuffer",
"variant": "signature",
"kind": 4096,
@@ -76439,7 +133971,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 455,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L455"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L455"
}
],
"type": {
@@ -76450,7 +133982,7 @@
]
},
{
- "id": 449,
+ "id": 527,
"name": "getChannels",
"variant": "declaration",
"kind": 2048,
@@ -76460,12 +133992,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L272"
}
],
"signatures": [
{
- "id": 450,
+ "id": 528,
"name": "getChannels",
"variant": "signature",
"kind": 4096,
@@ -76483,7 +134015,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L272"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L272"
}
],
"type": {
@@ -76500,7 +134032,7 @@
]
},
{
- "id": 463,
+ "id": 541,
"name": "isConnected",
"variant": "declaration",
"kind": 2048,
@@ -76510,12 +134042,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L328"
}
],
"signatures": [
{
- "id": 464,
+ "id": 542,
"name": "isConnected",
"variant": "signature",
"kind": 4096,
@@ -76541,7 +134073,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 328,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L328"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L328"
}
],
"type": {
@@ -76552,7 +134084,7 @@
]
},
{
- "id": 465,
+ "id": 543,
"name": "isConnecting",
"variant": "declaration",
"kind": 2048,
@@ -76562,12 +134094,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L335"
}
],
"signatures": [
{
- "id": 466,
+ "id": 544,
"name": "isConnecting",
"variant": "signature",
"kind": 4096,
@@ -76593,7 +134125,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 335,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L335"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L335"
}
],
"type": {
@@ -76604,7 +134136,7 @@
]
},
{
- "id": 467,
+ "id": 545,
"name": "isDisconnecting",
"variant": "declaration",
"kind": 2048,
@@ -76614,12 +134146,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L342"
}
],
"signatures": [
{
- "id": 468,
+ "id": 546,
"name": "isDisconnecting",
"variant": "signature",
"kind": 4096,
@@ -76645,7 +134177,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 342,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L342"
}
],
"type": {
@@ -76656,7 +134188,7 @@
]
},
{
- "id": 456,
+ "id": 534,
"name": "log",
"variant": "declaration",
"kind": 2048,
@@ -76666,12 +134198,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"signatures": [
{
- "id": 457,
+ "id": 535,
"name": "log",
"variant": "signature",
"kind": 4096,
@@ -76697,12 +134229,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 305,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L305"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L305"
}
],
"parameters": [
{
- "id": 458,
+ "id": 536,
"name": "kind",
"variant": "param",
"kind": 32768,
@@ -76713,7 +134245,7 @@
}
},
{
- "id": 459,
+ "id": 537,
"name": "msg",
"variant": "param",
"kind": 32768,
@@ -76724,7 +134256,7 @@
}
},
{
- "id": 460,
+ "id": 538,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -76745,7 +134277,7 @@
]
},
{
- "id": 481,
+ "id": 559,
"name": "onHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -76755,12 +134287,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L449"
}
],
"signatures": [
{
- "id": 482,
+ "id": 560,
"name": "onHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -76770,12 +134302,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 449,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L449"
}
],
"parameters": [
{
- "id": 483,
+ "id": 561,
"name": "callback",
"variant": "param",
"kind": 32768,
@@ -76783,7 +134315,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 484,
+ "id": 562,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -76793,12 +134325,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 449,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L449"
}
],
"signatures": [
{
- "id": 485,
+ "id": 563,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -76808,12 +134340,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 449,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L449"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L449"
}
],
"parameters": [
{
- "id": 486,
+ "id": 564,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -76847,7 +134379,7 @@
]
},
{
- "id": 473,
+ "id": 551,
"name": "push",
"variant": "declaration",
"kind": 2048,
@@ -76857,12 +134389,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 365,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L365"
}
],
"signatures": [
{
- "id": 474,
+ "id": 552,
"name": "push",
"variant": "signature",
"kind": 4096,
@@ -76880,19 +134412,19 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 365,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L365"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L365"
}
],
"parameters": [
{
- "id": 475,
+ "id": 553,
"name": "data",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 602,
+ "target": 680,
"name": "RealtimeMessage",
"package": "@supabase/realtime-js"
}
@@ -76906,7 +134438,7 @@
]
},
{
- "id": 454,
+ "id": 532,
"name": "removeAllChannels",
"variant": "declaration",
"kind": 2048,
@@ -76916,12 +134448,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L293"
}
],
"signatures": [
{
- "id": 455,
+ "id": 533,
"name": "removeAllChannels",
"variant": "signature",
"kind": 4096,
@@ -76939,7 +134471,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 293,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L293"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L293"
}
],
"type": {
@@ -76953,7 +134485,7 @@
"type": "array",
"elementType": {
"type": "reference",
- "target": 679,
+ "target": 757,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -76966,7 +134498,7 @@
]
},
{
- "id": 451,
+ "id": 529,
"name": "removeChannel",
"variant": "declaration",
"kind": 2048,
@@ -76976,12 +134508,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 280,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L280"
}
],
"signatures": [
{
- "id": 452,
+ "id": 530,
"name": "removeChannel",
"variant": "signature",
"kind": 4096,
@@ -76999,12 +134531,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 280,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L280"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L280"
}
],
"parameters": [
{
- "id": 453,
+ "id": 531,
"name": "channel",
"variant": "param",
"kind": 32768,
@@ -77035,7 +134567,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 679,
+ "target": 757,
"name": "RealtimeRemoveChannelResponse",
"package": "@supabase/realtime-js"
}
@@ -77047,7 +134579,7 @@
]
},
{
- "id": 479,
+ "id": 557,
"name": "sendHeartbeat",
"variant": "declaration",
"kind": 2048,
@@ -77057,12 +134589,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"signatures": [
{
- "id": 480,
+ "id": 558,
"name": "sendHeartbeat",
"variant": "signature",
"kind": 4096,
@@ -77080,7 +134612,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 400,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L400"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L400"
}
],
"type": {
@@ -77102,7 +134634,7 @@
]
},
{
- "id": 476,
+ "id": 554,
"name": "setAuth",
"variant": "declaration",
"kind": 2048,
@@ -77112,12 +134644,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L389"
}
],
"signatures": [
{
- "id": 477,
+ "id": 555,
"name": "setAuth",
"variant": "signature",
"kind": 4096,
@@ -77143,12 +134675,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L389"
}
],
"parameters": [
{
- "id": 478,
+ "id": 556,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -77199,19 +134731,19 @@
"groups": [
{
"title": "Constructors",
- "children": [382]
+ "children": [460]
},
{
"title": "Properties",
"children": [
- 432, 386, 387, 388, 415, 413, 412, 389, 424, 391, 404, 401, 402, 390, 410, 411, 395,
- 403, 414, 409, 408, 416, 417, 418, 399, 400, 435, 437, 436
+ 510, 464, 465, 466, 493, 491, 490, 467, 502, 469, 482, 479, 480, 468, 488, 489, 473,
+ 481, 492, 487, 486, 494, 495, 496, 477, 478, 513, 515, 514
]
},
{
"title": "Methods",
"children": [
- 469, 441, 461, 445, 443, 487, 449, 463, 465, 467, 456, 481, 473, 454, 451, 479, 476
+ 547, 519, 539, 523, 521, 565, 527, 541, 543, 545, 534, 559, 551, 532, 529, 557, 554
]
}
],
@@ -77220,7 +134752,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 95,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L95"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L95"
}
]
},
@@ -77242,7 +134774,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L81"
}
],
"signatures": [
@@ -77265,7 +134797,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L81"
}
],
"parameters": [
@@ -77343,7 +134875,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
],
"type": {
@@ -77366,7 +134898,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 65,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L65"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L65"
}
],
"type": {
@@ -77390,7 +134922,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 66,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L66"
}
],
"type": {
@@ -77414,7 +134946,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -77430,7 +134962,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"signatures": [
@@ -77445,7 +134977,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 67,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L67"
}
],
"type": {
@@ -77469,7 +135001,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 64,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L64"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L64"
}
]
}
@@ -77497,7 +135029,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 82,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L82"
}
],
"type": {
@@ -77519,7 +135051,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 63,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L63"
}
],
"type": {
@@ -77539,7 +135071,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L62"
}
],
"type": {
@@ -77568,7 +135100,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L61"
}
],
"type": {
@@ -77596,12 +135128,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L60"
}
],
"type": {
"type": "reference",
- "target": 670,
+ "target": 748,
"name": "RealtimePresenceState",
"package": "@supabase/realtime-js"
},
@@ -77623,33 +135155,33 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 59,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L59"
}
]
},
{
- "id": 700,
+ "id": 778,
"name": "WebSocketFactory",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 715,
+ "id": 793,
"name": "constructor",
"variant": "declaration",
"kind": 512,
"flags": {},
"signatures": [
{
- "id": 716,
+ "id": 794,
"name": "WebSocketFactory",
"variant": "signature",
"kind": 16384,
"flags": {},
"type": {
"type": "reference",
- "target": 700,
+ "target": 778,
"name": "WebSocketFactory",
"package": "@supabase/realtime-js"
}
@@ -77657,7 +135189,7 @@
]
},
{
- "id": 709,
+ "id": 787,
"name": "createWebSocket",
"variant": "declaration",
"kind": 2048,
@@ -77670,12 +135202,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 130,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L130"
}
],
"signatures": [
{
- "id": 710,
+ "id": 788,
"name": "createWebSocket",
"variant": "signature",
"kind": 4096,
@@ -77685,12 +135217,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 130,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L130"
}
],
"parameters": [
{
- "id": 711,
+ "id": 789,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -77715,7 +135247,7 @@
}
},
{
- "id": 712,
+ "id": 790,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -77742,7 +135274,7 @@
],
"type": {
"type": "reference",
- "target": 717,
+ "target": 795,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -77750,7 +135282,7 @@
]
},
{
- "id": 703,
+ "id": 781,
"name": "getWebSocketConstructor",
"variant": "declaration",
"kind": 2048,
@@ -77763,12 +135295,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 118,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L118"
}
],
"signatures": [
{
- "id": 704,
+ "id": 782,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 4096,
@@ -77778,13 +135310,13 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 118,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L118"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L118"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 705,
+ "id": 783,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -77798,7 +135330,7 @@
],
"signatures": [
{
- "id": 706,
+ "id": 784,
"name": "getWebSocketConstructor",
"variant": "signature",
"kind": 16384,
@@ -77812,7 +135344,7 @@
],
"parameters": [
{
- "id": 707,
+ "id": 785,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -77837,7 +135369,7 @@
}
},
{
- "id": 708,
+ "id": 786,
"name": "protocols",
"variant": "param",
"kind": 32768,
@@ -77879,7 +135411,7 @@
]
},
{
- "id": 713,
+ "id": 791,
"name": "isWebSocketSupported",
"variant": "declaration",
"kind": 2048,
@@ -77892,12 +135424,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 135,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L135"
}
],
"signatures": [
{
- "id": 714,
+ "id": 792,
"name": "isWebSocketSupported",
"variant": "signature",
"kind": 4096,
@@ -77907,7 +135439,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 135,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L135"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L135"
}
],
"type": {
@@ -77921,11 +135453,11 @@
"groups": [
{
"title": "Constructors",
- "children": [715]
+ "children": [793]
},
{
"title": "Methods",
- "children": [709, 703, 713]
+ "children": [787, 781, 791]
}
],
"sources": [
@@ -77933,19 +135465,19 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 35,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L35"
}
]
},
{
- "id": 717,
+ "id": 795,
"name": "WebSocketLike",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 760,
+ "id": 838,
"name": "binaryType",
"variant": "declaration",
"kind": 1024,
@@ -77957,7 +135489,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L22"
}
],
"type": {
@@ -77966,7 +135498,7 @@
}
},
{
- "id": 761,
+ "id": 839,
"name": "bufferedAmount",
"variant": "declaration",
"kind": 1024,
@@ -77978,7 +135510,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L23"
}
],
"type": {
@@ -77987,7 +135519,7 @@
}
},
{
- "id": 721,
+ "id": 799,
"name": "CLOSED",
"variant": "declaration",
"kind": 1024,
@@ -77999,7 +135531,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 5,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L5"
}
],
"type": {
@@ -78008,7 +135540,7 @@
}
},
{
- "id": 720,
+ "id": 798,
"name": "CLOSING",
"variant": "declaration",
"kind": 1024,
@@ -78020,7 +135552,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 4,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L4"
}
],
"type": {
@@ -78029,7 +135561,7 @@
}
},
{
- "id": 718,
+ "id": 796,
"name": "CONNECTING",
"variant": "declaration",
"kind": 1024,
@@ -78041,7 +135573,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 2,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L2"
}
],
"type": {
@@ -78050,7 +135582,7 @@
}
},
{
- "id": 763,
+ "id": 841,
"name": "dispatchEvent",
"variant": "declaration",
"kind": 1024,
@@ -78062,13 +135594,13 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 764,
+ "id": 842,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78078,12 +135610,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 25,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
}
],
"signatures": [
{
- "id": 765,
+ "id": 843,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78093,12 +135625,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 25,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L25"
}
],
"parameters": [
{
- "id": 766,
+ "id": 844,
"name": "event",
"variant": "param",
"kind": 32768,
@@ -78124,7 +135656,7 @@
}
},
{
- "id": 762,
+ "id": 840,
"name": "extensions",
"variant": "declaration",
"kind": 1024,
@@ -78136,7 +135668,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 24,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L24"
}
],
"type": {
@@ -78145,7 +135677,7 @@
}
},
{
- "id": 742,
+ "id": 820,
"name": "onclose",
"variant": "declaration",
"kind": 1024,
@@ -78155,7 +135687,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 15,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
}
],
"type": {
@@ -78168,7 +135700,7 @@
{
"type": "reflection",
"declaration": {
- "id": 743,
+ "id": 821,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78178,12 +135710,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 15,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
}
],
"signatures": [
{
- "id": 744,
+ "id": 822,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78193,12 +135725,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 15,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L15"
}
],
"parameters": [
{
- "id": 745,
+ "id": 823,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -78209,7 +135741,7 @@
}
},
{
- "id": 746,
+ "id": 824,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -78237,7 +135769,7 @@
}
},
{
- "id": 747,
+ "id": 825,
"name": "onerror",
"variant": "declaration",
"kind": 1024,
@@ -78247,7 +135779,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 16,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
}
],
"type": {
@@ -78260,7 +135792,7 @@
{
"type": "reflection",
"declaration": {
- "id": 748,
+ "id": 826,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78270,12 +135802,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
}
],
"signatures": [
{
- "id": 749,
+ "id": 827,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78285,12 +135817,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 16,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L16"
}
],
"parameters": [
{
- "id": 750,
+ "id": 828,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -78301,7 +135833,7 @@
}
},
{
- "id": 751,
+ "id": 829,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -78329,7 +135861,7 @@
}
},
{
- "id": 737,
+ "id": 815,
"name": "onmessage",
"variant": "declaration",
"kind": 1024,
@@ -78339,7 +135871,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
}
],
"type": {
@@ -78352,7 +135884,7 @@
{
"type": "reflection",
"declaration": {
- "id": 738,
+ "id": 816,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78362,12 +135894,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 14,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
}
],
"signatures": [
{
- "id": 739,
+ "id": 817,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78377,12 +135909,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 14,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L14"
}
],
"parameters": [
{
- "id": 740,
+ "id": 818,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -78393,7 +135925,7 @@
}
},
{
- "id": 741,
+ "id": 819,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -78421,7 +135953,7 @@
}
},
{
- "id": 732,
+ "id": 810,
"name": "onopen",
"variant": "declaration",
"kind": 1024,
@@ -78431,7 +135963,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"type": {
@@ -78444,7 +135976,7 @@
{
"type": "reflection",
"declaration": {
- "id": 733,
+ "id": 811,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -78454,12 +135986,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"signatures": [
{
- "id": 734,
+ "id": 812,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -78469,12 +136001,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 13,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L13"
}
],
"parameters": [
{
- "id": 735,
+ "id": 813,
"name": "this",
"variant": "param",
"kind": 32768,
@@ -78485,7 +136017,7 @@
}
},
{
- "id": 736,
+ "id": 814,
"name": "ev",
"variant": "param",
"kind": 32768,
@@ -78513,7 +136045,7 @@
}
},
{
- "id": 719,
+ "id": 797,
"name": "OPEN",
"variant": "declaration",
"kind": 1024,
@@ -78525,7 +136057,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 3,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L3"
}
],
"type": {
@@ -78534,7 +136066,7 @@
}
},
{
- "id": 724,
+ "id": 802,
"name": "protocol",
"variant": "declaration",
"kind": 1024,
@@ -78546,7 +136078,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 8,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L8"
}
],
"type": {
@@ -78555,7 +136087,7 @@
}
},
{
- "id": 722,
+ "id": 800,
"name": "readyState",
"variant": "declaration",
"kind": 1024,
@@ -78567,7 +136099,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 6,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L6"
}
],
"type": {
@@ -78576,7 +136108,7 @@
}
},
{
- "id": 723,
+ "id": 801,
"name": "url",
"variant": "declaration",
"kind": 1024,
@@ -78588,7 +136120,7 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 7,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L7"
}
],
"type": {
@@ -78597,7 +136129,7 @@
}
},
{
- "id": 752,
+ "id": 830,
"name": "addEventListener",
"variant": "declaration",
"kind": 2048,
@@ -78607,12 +136139,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L18"
}
],
"signatures": [
{
- "id": 753,
+ "id": 831,
"name": "addEventListener",
"variant": "signature",
"kind": 4096,
@@ -78622,12 +136154,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L18"
}
],
"parameters": [
{
- "id": 754,
+ "id": 832,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -78638,7 +136170,7 @@
}
},
{
- "id": 755,
+ "id": 833,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -78662,7 +136194,7 @@
]
},
{
- "id": 725,
+ "id": 803,
"name": "close",
"variant": "declaration",
"kind": 2048,
@@ -78672,12 +136204,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L10"
}
],
"signatures": [
{
- "id": 726,
+ "id": 804,
"name": "close",
"variant": "signature",
"kind": 4096,
@@ -78687,12 +136219,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L10"
}
],
"parameters": [
{
- "id": 727,
+ "id": 805,
"name": "code",
"variant": "param",
"kind": 32768,
@@ -78705,7 +136237,7 @@
}
},
{
- "id": 728,
+ "id": 806,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -78726,7 +136258,7 @@
]
},
{
- "id": 756,
+ "id": 834,
"name": "removeEventListener",
"variant": "declaration",
"kind": 2048,
@@ -78736,12 +136268,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"signatures": [
{
- "id": 757,
+ "id": 835,
"name": "removeEventListener",
"variant": "signature",
"kind": 4096,
@@ -78751,12 +136283,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L19"
}
],
"parameters": [
{
- "id": 758,
+ "id": 836,
"name": "type",
"variant": "param",
"kind": 32768,
@@ -78767,7 +136299,7 @@
}
},
{
- "id": 759,
+ "id": 837,
"name": "listener",
"variant": "param",
"kind": 32768,
@@ -78791,7 +136323,7 @@
]
},
{
- "id": 729,
+ "id": 807,
"name": "send",
"variant": "declaration",
"kind": 2048,
@@ -78801,12 +136333,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L11"
}
],
"signatures": [
{
- "id": 730,
+ "id": 808,
"name": "send",
"variant": "signature",
"kind": 4096,
@@ -78816,12 +136348,12 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 11,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L11"
}
],
"parameters": [
{
- "id": 731,
+ "id": 809,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -78842,6 +136374,15 @@
"name": "ArrayBufferLike",
"package": "typescript"
},
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ },
{
"type": "reference",
"target": {
@@ -78861,15 +136402,6 @@
],
"name": "ArrayBufferView",
"package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
- },
- "name": "Blob",
- "package": "typescript"
}
]
}
@@ -78887,12 +136419,12 @@
{
"title": "Properties",
"children": [
- 760, 761, 721, 720, 718, 763, 762, 742, 747, 737, 732, 719, 724, 722, 723
+ 838, 839, 799, 798, 796, 841, 840, 820, 825, 815, 810, 797, 802, 800, 801
]
},
{
"title": "Methods",
- "children": [752, 725, 756, 729]
+ "children": [830, 803, 834, 807]
}
],
"sources": [
@@ -78900,19 +136432,19 @@
"fileName": "packages/core/realtime-js/src/lib/websocket-factory.ts",
"line": 1,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/lib/websocket-factory.ts#L1"
}
]
},
{
- "id": 767,
+ "id": 845,
"name": "WebSocketLikeConstructor",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 768,
+ "id": 846,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -78922,12 +136454,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 56,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L56"
}
],
"signatures": [
{
- "id": 769,
+ "id": 847,
"name": "WebSocketLikeConstructor",
"variant": "signature",
"kind": 16384,
@@ -78937,12 +136469,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L57"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L57"
}
],
"parameters": [
{
- "id": 770,
+ "id": 848,
"name": "address",
"variant": "param",
"kind": 32768,
@@ -78967,7 +136499,7 @@
}
},
{
- "id": 771,
+ "id": 849,
"name": "subprotocols",
"variant": "param",
"kind": 32768,
@@ -78994,7 +136526,7 @@
],
"type": {
"type": "reference",
- "target": 717,
+ "target": 795,
"name": "WebSocketLike",
"package": "@supabase/realtime-js"
}
@@ -79005,7 +136537,7 @@
"groups": [
{
"title": "Constructors",
- "children": [768]
+ "children": [846]
}
],
"sources": [
@@ -79013,12 +136545,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 56,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L56"
}
],
"indexSignatures": [
{
- "id": 772,
+ "id": 850,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79028,12 +136560,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L59"
}
],
"parameters": [
{
- "id": 773,
+ "id": 851,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79052,7 +136584,7 @@
]
},
{
- "id": 366,
+ "id": 444,
"name": "RealtimeChannelOptions",
"variant": "declaration",
"kind": 2097152,
@@ -79062,20 +136594,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 367,
+ "id": 445,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 368,
+ "id": 446,
"name": "config",
"variant": "declaration",
"kind": 1024,
@@ -79085,20 +136617,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 369,
+ "id": 447,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 370,
+ "id": 448,
"name": "broadcast",
"variant": "declaration",
"kind": 1024,
@@ -79118,20 +136650,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 371,
+ "id": 449,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 373,
+ "id": 451,
"name": "ack",
"variant": "declaration",
"kind": 1024,
@@ -79143,7 +136675,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 34,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -79152,7 +136684,7 @@
}
},
{
- "id": 374,
+ "id": 452,
"name": "replay",
"variant": "declaration",
"kind": 1024,
@@ -79164,7 +136696,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -79178,7 +136710,7 @@
}
},
{
- "id": 372,
+ "id": 450,
"name": "self",
"variant": "declaration",
"kind": 1024,
@@ -79190,7 +136722,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
],
"type": {
@@ -79202,7 +136734,7 @@
"groups": [
{
"title": "Properties",
- "children": [373, 374, 372]
+ "children": [451, 452, 450]
}
],
"sources": [
@@ -79210,14 +136742,14 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 26,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L26"
}
]
}
}
},
{
- "id": 375,
+ "id": 453,
"name": "presence",
"variant": "declaration",
"kind": 1024,
@@ -79237,20 +136769,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 376,
+ "id": 454,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 378,
+ "id": 456,
"name": "enabled",
"variant": "declaration",
"kind": 1024,
@@ -79262,7 +136794,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 31,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -79271,7 +136803,7 @@
}
},
{
- "id": 377,
+ "id": 455,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -79283,7 +136815,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
],
"type": {
@@ -79295,7 +136827,7 @@
"groups": [
{
"title": "Properties",
- "children": [378, 377]
+ "children": [456, 455]
}
],
"sources": [
@@ -79303,14 +136835,14 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 30,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L30"
}
]
}
}
},
{
- "id": 379,
+ "id": 457,
"name": "private",
"variant": "declaration",
"kind": 1024,
@@ -79330,7 +136862,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 34,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L34"
}
],
"type": {
@@ -79342,7 +136874,7 @@
"groups": [
{
"title": "Properties",
- "children": [370, 375, 379]
+ "children": [448, 453, 457]
}
],
"sources": [
@@ -79350,7 +136882,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 20,
"character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L20"
}
]
}
@@ -79360,7 +136892,7 @@
"groups": [
{
"title": "Properties",
- "children": [368]
+ "children": [446]
}
],
"sources": [
@@ -79368,14 +136900,14 @@
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
"line": 19,
"character": 37,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L19"
}
]
}
}
},
{
- "id": 380,
+ "id": 458,
"name": "RealtimeChannelSendResponse",
"variant": "declaration",
"kind": 2097152,
@@ -79383,9 +136915,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 90,
+ "line": 125,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L125"
}
],
"type": {
@@ -79407,7 +136939,7 @@
}
},
{
- "id": 573,
+ "id": 651,
"name": "RealtimeClientOptions",
"variant": "declaration",
"kind": 2097152,
@@ -79417,20 +136949,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 68,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L68"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 574,
+ "id": 652,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 599,
+ "id": 677,
"name": "accessToken",
"variant": "declaration",
"kind": 1024,
@@ -79442,13 +136974,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 600,
+ "id": 678,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79458,12 +136990,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 85,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L85"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L85"
}
],
"signatures": [
{
- "id": 601,
+ "id": 679,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -79498,7 +137030,7 @@
}
},
{
- "id": 584,
+ "id": 662,
"name": "decode",
"variant": "declaration",
"kind": 1024,
@@ -79510,7 +137042,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 75,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L75"
}
],
"type": {
@@ -79524,7 +137056,7 @@
}
},
{
- "id": 583,
+ "id": 661,
"name": "encode",
"variant": "declaration",
"kind": 1024,
@@ -79536,7 +137068,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 74,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L74"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L74"
}
],
"type": {
@@ -79550,7 +137082,7 @@
}
},
{
- "id": 596,
+ "id": 674,
"name": "fetch",
"variant": "declaration",
"kind": 1024,
@@ -79562,7 +137094,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 82,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L82"
}
],
"type": {
@@ -79576,7 +137108,7 @@
}
},
{
- "id": 586,
+ "id": 664,
"name": "headers",
"variant": "declaration",
"kind": 1024,
@@ -79588,13 +137120,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 587,
+ "id": 665,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79604,12 +137136,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"indexSignatures": [
{
- "id": 588,
+ "id": 666,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79619,12 +137151,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 77,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L77"
}
],
"parameters": [
{
- "id": 589,
+ "id": 667,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79645,7 +137177,7 @@
}
},
{
- "id": 578,
+ "id": 656,
"name": "heartbeatCallback",
"variant": "declaration",
"kind": 1024,
@@ -79657,13 +137189,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 72,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L72"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 579,
+ "id": 657,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79673,19 +137205,19 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 72,
"character": 22,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L72"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L72"
}
],
"signatures": [
{
- "id": 580,
+ "id": 658,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
"parameters": [
{
- "id": 581,
+ "id": 659,
"name": "status",
"variant": "param",
"kind": 32768,
@@ -79711,7 +137243,7 @@
}
},
{
- "id": 577,
+ "id": 655,
"name": "heartbeatIntervalMs",
"variant": "declaration",
"kind": 1024,
@@ -79723,7 +137255,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L71"
}
],
"type": {
@@ -79732,7 +137264,7 @@
}
},
{
- "id": 594,
+ "id": 672,
"name": "log_level",
"variant": "declaration",
"kind": 1024,
@@ -79744,7 +137276,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 80,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L80"
}
],
"type": {
@@ -79758,7 +137290,7 @@
}
},
{
- "id": 582,
+ "id": 660,
"name": "logger",
"variant": "declaration",
"kind": 1024,
@@ -79770,7 +137302,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 73,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L73"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L73"
}
],
"type": {
@@ -79784,7 +137316,7 @@
}
},
{
- "id": 595,
+ "id": 673,
"name": "logLevel",
"variant": "declaration",
"kind": 1024,
@@ -79796,7 +137328,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 81,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L81"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L81"
}
],
"type": {
@@ -79810,7 +137342,7 @@
}
},
{
- "id": 590,
+ "id": 668,
"name": "params",
"variant": "declaration",
"kind": 1024,
@@ -79822,13 +137354,13 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 591,
+ "id": 669,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -79838,12 +137370,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"indexSignatures": [
{
- "id": 592,
+ "id": 670,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -79853,12 +137385,12 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 78,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L78"
}
],
"parameters": [
{
- "id": 593,
+ "id": 671,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -79879,7 +137411,7 @@
}
},
{
- "id": 585,
+ "id": 663,
"name": "reconnectAfterMs",
"variant": "declaration",
"kind": 1024,
@@ -79891,7 +137423,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 76,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L76"
}
],
"type": {
@@ -79905,7 +137437,7 @@
}
},
{
- "id": 576,
+ "id": 654,
"name": "timeout",
"variant": "declaration",
"kind": 1024,
@@ -79917,7 +137449,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 70,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L70"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L70"
}
],
"type": {
@@ -79926,7 +137458,7 @@
}
},
{
- "id": 575,
+ "id": 653,
"name": "transport",
"variant": "declaration",
"kind": 1024,
@@ -79938,18 +137470,18 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 69,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L69"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L69"
}
],
"type": {
"type": "reference",
- "target": 767,
+ "target": 845,
"name": "WebSocketLikeConstructor",
"package": "@supabase/realtime-js"
}
},
{
- "id": 597,
+ "id": 675,
"name": "worker",
"variant": "declaration",
"kind": 1024,
@@ -79961,7 +137493,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 83,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L83"
}
],
"type": {
@@ -79970,7 +137502,7 @@
}
},
{
- "id": 598,
+ "id": 676,
"name": "workerUrl",
"variant": "declaration",
"kind": 1024,
@@ -79982,7 +137514,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 84,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L84"
}
],
"type": {
@@ -79995,7 +137527,7 @@
{
"title": "Properties",
"children": [
- 599, 584, 583, 596, 586, 578, 577, 594, 582, 595, 590, 585, 576, 575, 597, 598
+ 677, 662, 661, 674, 664, 656, 655, 672, 660, 673, 668, 663, 654, 653, 675, 676
]
}
],
@@ -80004,14 +137536,14 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 68,
"character": 36,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L68"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L68"
}
]
}
}
},
{
- "id": 602,
+ "id": 680,
"name": "RealtimeMessage",
"variant": "declaration",
"kind": 2097152,
@@ -80021,20 +137553,20 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 31,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L31"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 603,
+ "id": 681,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 605,
+ "id": 683,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -80044,7 +137576,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 33,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L33"
}
],
"type": {
@@ -80053,7 +137585,7 @@
}
},
{
- "id": 608,
+ "id": 686,
"name": "join_ref",
"variant": "declaration",
"kind": 1024,
@@ -80065,7 +137597,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 36,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L36"
}
],
"type": {
@@ -80074,7 +137606,7 @@
}
},
{
- "id": 606,
+ "id": 684,
"name": "payload",
"variant": "declaration",
"kind": 1024,
@@ -80084,7 +137616,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 34,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L34"
}
],
"type": {
@@ -80093,7 +137625,7 @@
}
},
{
- "id": 607,
+ "id": 685,
"name": "ref",
"variant": "declaration",
"kind": 1024,
@@ -80103,7 +137635,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 35,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L35"
}
],
"type": {
@@ -80112,7 +137644,7 @@
}
},
{
- "id": 604,
+ "id": 682,
"name": "topic",
"variant": "declaration",
"kind": 1024,
@@ -80122,7 +137654,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 32,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L32"
}
],
"type": {
@@ -80134,7 +137666,7 @@
"groups": [
{
"title": "Properties",
- "children": [605, 608, 606, 607, 604]
+ "children": [683, 686, 684, 685, 682]
}
],
"sources": [
@@ -80142,14 +137674,14 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 31,
"character": 30,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L31"
}
]
}
}
},
{
- "id": 609,
+ "id": 687,
"name": "RealtimePostgresChangesFilter",
"variant": "declaration",
"kind": 2097152,
@@ -80157,14 +137689,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 71,
+ "line": 106,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
],
"typeParameters": [
{
- "id": 615,
+ "id": 693,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -80176,7 +137708,7 @@
[
{
"type": "reference",
- "target": 685,
+ "target": 763,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
"package": "@supabase/realtime-js"
},
@@ -80189,14 +137721,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 610,
+ "id": 688,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 611,
+ "id": 689,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -80212,21 +137744,21 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 75,
+ "line": 110,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L75"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L110"
}
],
"type": {
"type": "reference",
- "target": 615,
+ "target": 693,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 614,
+ "id": 692,
"name": "filter",
"variant": "declaration",
"kind": 1024,
@@ -80244,9 +137776,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 87,
+ "line": 122,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L122"
}
],
"type": {
@@ -80255,7 +137787,7 @@
}
},
{
- "id": 612,
+ "id": 690,
"name": "schema",
"variant": "declaration",
"kind": 1024,
@@ -80271,9 +137803,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 79,
+ "line": 114,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L114"
}
],
"type": {
@@ -80282,7 +137814,7 @@
}
},
{
- "id": 613,
+ "id": 691,
"name": "table",
"variant": "declaration",
"kind": 1024,
@@ -80300,9 +137832,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 83,
+ "line": 118,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L118"
}
],
"type": {
@@ -80314,22 +137846,22 @@
"groups": [
{
"title": "Properties",
- "children": [611, 614, 612, 613]
+ "children": [689, 692, 690, 691]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 71,
+ "line": 106,
"character": 99,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L106"
}
]
}
}
},
{
- "id": 616,
+ "id": 694,
"name": "RealtimePostgresChangesPayload",
"variant": "declaration",
"kind": 2097152,
@@ -80337,14 +137869,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 66,
+ "line": 101,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"typeParameters": [
{
- "id": 617,
+ "id": 695,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -80352,7 +137884,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 618,
+ "id": 696,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80360,14 +137892,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 66,
+ "line": 101,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"indexSignatures": [
{
- "id": 619,
+ "id": 697,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -80375,14 +137907,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 66,
+ "line": 101,
"character": 55,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L101"
}
],
"parameters": [
{
- "id": 620,
+ "id": 698,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -80408,11 +137940,11 @@
"types": [
{
"type": "reference",
- "target": 621,
+ "target": 699,
"typeArguments": [
{
"type": "reference",
- "target": 617,
+ "target": 695,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -80423,11 +137955,11 @@
},
{
"type": "reference",
- "target": 631,
+ "target": 709,
"typeArguments": [
{
"type": "reference",
- "target": 617,
+ "target": 695,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -80438,11 +137970,11 @@
},
{
"type": "reference",
- "target": 640,
+ "target": 718,
"typeArguments": [
{
"type": "reference",
- "target": 617,
+ "target": 695,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -80455,7 +137987,7 @@
}
},
{
- "id": 640,
+ "id": 718,
"name": "RealtimePostgresDeletePayload",
"variant": "declaration",
"kind": 2097152,
@@ -80463,14 +137995,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 59,
+ "line": 94,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"typeParameters": [
{
- "id": 646,
+ "id": 724,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -80478,7 +138010,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 647,
+ "id": 725,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80486,14 +138018,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 59,
+ "line": 94,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"indexSignatures": [
{
- "id": 648,
+ "id": 726,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -80501,14 +138033,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 59,
+ "line": 94,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L59"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L94"
}
],
"parameters": [
{
- "id": 649,
+ "id": 727,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -80544,14 +138076,14 @@
{
"type": "reflection",
"declaration": {
- "id": 641,
+ "id": 719,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 642,
+ "id": 720,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -80559,9 +138091,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 61,
+ "line": 96,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L61"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L96"
}
],
"type": {
@@ -80571,7 +138103,7 @@
[
{
"type": "reference",
- "target": 689,
+ "target": 767,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
"package": "@supabase/realtime-js"
},
@@ -80581,7 +138113,7 @@
}
},
{
- "id": 643,
+ "id": 721,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -80589,15 +138121,15 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 62,
+ "line": 97,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 644,
+ "id": 722,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80605,16 +138137,16 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 62,
+ "line": 97,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L97"
}
]
}
}
},
{
- "id": 645,
+ "id": 723,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -80622,9 +138154,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 63,
+ "line": 98,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L63"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L98"
}
],
"type": {
@@ -80636,7 +138168,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 646,
+ "target": 724,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -80650,15 +138182,15 @@
"groups": [
{
"title": "Properties",
- "children": [642, 643, 645]
+ "children": [720, 721, 723]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 60,
+ "line": 95,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L60"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L95"
}
]
}
@@ -80667,7 +138199,7 @@
}
},
{
- "id": 621,
+ "id": 699,
"name": "RealtimePostgresInsertPayload",
"variant": "declaration",
"kind": 2097152,
@@ -80675,14 +138207,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 45,
+ "line": 80,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"typeParameters": [
{
- "id": 627,
+ "id": 705,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -80690,7 +138222,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 628,
+ "id": 706,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80698,14 +138230,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 45,
+ "line": 80,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"indexSignatures": [
{
- "id": 629,
+ "id": 707,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -80713,14 +138245,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 45,
+ "line": 80,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L80"
}
],
"parameters": [
{
- "id": 630,
+ "id": 708,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -80756,14 +138288,14 @@
{
"type": "reflection",
"declaration": {
- "id": 622,
+ "id": 700,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 623,
+ "id": 701,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -80771,9 +138303,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 47,
+ "line": 82,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L82"
}
],
"type": {
@@ -80783,7 +138315,7 @@
[
{
"type": "reference",
- "target": 687,
+ "target": 765,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
"package": "@supabase/realtime-js"
},
@@ -80793,7 +138325,7 @@
}
},
{
- "id": 624,
+ "id": 702,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -80801,21 +138333,21 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 48,
+ "line": 83,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L83"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 705,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 625,
+ "id": 703,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -80823,15 +138355,15 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 49,
+ "line": 84,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 626,
+ "id": 704,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80839,9 +138371,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 49,
+ "line": 84,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L84"
}
]
}
@@ -80851,15 +138383,15 @@
"groups": [
{
"title": "Properties",
- "children": [623, 624, 625]
+ "children": [701, 702, 703]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 46,
+ "line": 81,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L46"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L81"
}
]
}
@@ -80868,7 +138400,7 @@
}
},
{
- "id": 631,
+ "id": 709,
"name": "RealtimePostgresUpdatePayload",
"variant": "declaration",
"kind": 2097152,
@@ -80876,14 +138408,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 52,
+ "line": 87,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"typeParameters": [
{
- "id": 636,
+ "id": 714,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -80891,7 +138423,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 637,
+ "id": 715,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -80899,14 +138431,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 52,
+ "line": 87,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"indexSignatures": [
{
- "id": 638,
+ "id": 716,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -80914,14 +138446,14 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 52,
+ "line": 87,
"character": 54,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L87"
}
],
"parameters": [
{
- "id": 639,
+ "id": 717,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -80957,14 +138489,14 @@
{
"type": "reflection",
"declaration": {
- "id": 632,
+ "id": 710,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 633,
+ "id": 711,
"name": "eventType",
"variant": "declaration",
"kind": 1024,
@@ -80972,9 +138504,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 54,
+ "line": 89,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L89"
}
],
"type": {
@@ -80984,7 +138516,7 @@
[
{
"type": "reference",
- "target": 688,
+ "target": 766,
"name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
"package": "@supabase/realtime-js"
},
@@ -80994,7 +138526,7 @@
}
},
{
- "id": 634,
+ "id": 712,
"name": "new",
"variant": "declaration",
"kind": 1024,
@@ -81002,21 +138534,21 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 55,
+ "line": 90,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L55"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L90"
}
],
"type": {
"type": "reference",
- "target": 636,
+ "target": 714,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
}
},
{
- "id": 635,
+ "id": 713,
"name": "old",
"variant": "declaration",
"kind": 1024,
@@ -81024,9 +138556,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 56,
+ "line": 91,
"character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L56"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L91"
}
],
"type": {
@@ -81038,7 +138570,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 636,
+ "target": 714,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81052,15 +138584,15 @@
"groups": [
{
"title": "Properties",
- "children": [633, 634, 635]
+ "children": [711, 712, 713]
}
],
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 53,
+ "line": 88,
"character": 39,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L88"
}
]
}
@@ -81069,7 +138601,7 @@
}
},
{
- "id": 650,
+ "id": 728,
"name": "RealtimePresenceJoinPayload",
"variant": "declaration",
"kind": 2097152,
@@ -81079,12 +138611,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"typeParameters": [
{
- "id": 656,
+ "id": 734,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -81092,7 +138624,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 657,
+ "id": 735,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81102,12 +138634,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"indexSignatures": [
{
- "id": 658,
+ "id": 736,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -81117,12 +138649,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 52,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
],
"parameters": [
{
- "id": 659,
+ "id": 737,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -81146,14 +138678,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 651,
+ "id": 729,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 654,
+ "id": 732,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -81163,7 +138695,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L20"
}
],
"type": {
@@ -81177,7 +138709,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 656,
+ "target": 734,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81189,7 +138721,7 @@
}
},
{
- "id": 652,
+ "id": 730,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -81199,7 +138731,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 18,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L18"
}
],
"type": {
@@ -81209,7 +138741,7 @@
[
{
"type": "reference",
- "target": 692,
+ "target": 770,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
"package": "@supabase/realtime-js"
},
@@ -81219,7 +138751,7 @@
}
},
{
- "id": 653,
+ "id": 731,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -81229,7 +138761,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 19,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L19"
}
],
"type": {
@@ -81238,7 +138770,7 @@
}
},
{
- "id": 655,
+ "id": 733,
"name": "newPresences",
"variant": "declaration",
"kind": 1024,
@@ -81248,7 +138780,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L21"
}
],
"type": {
@@ -81262,7 +138794,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 656,
+ "target": 734,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81277,7 +138809,7 @@
"groups": [
{
"title": "Properties",
- "children": [654, 652, 653, 655]
+ "children": [732, 730, 731, 733]
}
],
"sources": [
@@ -81285,14 +138817,14 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 17,
"character": 76,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L17"
}
]
}
}
},
{
- "id": 660,
+ "id": 738,
"name": "RealtimePresenceLeavePayload",
"variant": "declaration",
"kind": 2097152,
@@ -81302,12 +138834,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"typeParameters": [
{
- "id": 666,
+ "id": 744,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -81315,7 +138847,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 667,
+ "id": 745,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81325,12 +138857,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"indexSignatures": [
{
- "id": 668,
+ "id": 746,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -81340,12 +138872,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 53,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
],
"parameters": [
{
- "id": 669,
+ "id": 747,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -81369,14 +138901,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 661,
+ "id": 739,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 664,
+ "id": 742,
"name": "currentPresences",
"variant": "declaration",
"kind": 1024,
@@ -81386,7 +138918,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 27,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L27"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L27"
}
],
"type": {
@@ -81400,7 +138932,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 666,
+ "target": 744,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81412,7 +138944,7 @@
}
},
{
- "id": 662,
+ "id": 740,
"name": "event",
"variant": "declaration",
"kind": 1024,
@@ -81422,7 +138954,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L25"
}
],
"type": {
@@ -81432,7 +138964,7 @@
[
{
"type": "reference",
- "target": 693,
+ "target": 771,
"name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
"package": "@supabase/realtime-js"
},
@@ -81442,7 +138974,7 @@
}
},
{
- "id": 663,
+ "id": 741,
"name": "key",
"variant": "declaration",
"kind": 1024,
@@ -81452,7 +138984,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L26"
}
],
"type": {
@@ -81461,7 +138993,7 @@
}
},
{
- "id": 665,
+ "id": 743,
"name": "leftPresences",
"variant": "declaration",
"kind": 1024,
@@ -81471,7 +139003,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 28,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L28"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L28"
}
],
"type": {
@@ -81485,7 +139017,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 666,
+ "target": 744,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81500,7 +139032,7 @@
"groups": [
{
"title": "Properties",
- "children": [664, 662, 663, 665]
+ "children": [742, 740, 741, 743]
}
],
"sources": [
@@ -81508,14 +139040,14 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 24,
"character": 77,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L24"
}
]
}
}
},
{
- "id": 670,
+ "id": 748,
"name": "RealtimePresenceState",
"variant": "declaration",
"kind": 2097152,
@@ -81525,12 +139057,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"typeParameters": [
{
- "id": 674,
+ "id": 752,
"name": "T",
"variant": "typeParam",
"kind": 131072,
@@ -81538,7 +139070,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 675,
+ "id": 753,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81548,12 +139080,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 44,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
{
- "id": 676,
+ "id": 754,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -81563,12 +139095,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 46,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"parameters": [
{
- "id": 677,
+ "id": 755,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -81590,7 +139122,7 @@
"default": {
"type": "reflection",
"declaration": {
- "id": 678,
+ "id": 756,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81600,7 +139132,7 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 69,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
]
}
@@ -81610,7 +139142,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 671,
+ "id": 749,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -81620,12 +139152,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 13,
"character": 75,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L13"
}
],
"indexSignatures": [
{
- "id": 672,
+ "id": 750,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -81635,12 +139167,12 @@
"fileName": "packages/core/realtime-js/src/RealtimePresence.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimePresence.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimePresence.ts#L14"
}
],
"parameters": [
{
- "id": 673,
+ "id": 751,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -81662,7 +139194,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 674,
+ "target": 752,
"name": "T",
"package": "@supabase/realtime-js",
"refersToTypeParameter": true
@@ -81678,7 +139210,7 @@
}
},
{
- "id": 679,
+ "id": 757,
"name": "RealtimeRemoveChannelResponse",
"variant": "declaration",
"kind": 2097152,
@@ -81688,7 +139220,7 @@
"fileName": "packages/core/realtime-js/src/RealtimeClient.ts",
"line": 39,
"character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeClient.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeClient.ts#L39"
}
],
"type": {
@@ -81710,7 +139242,7 @@
}
},
{
- "id": 699,
+ "id": 777,
"name": "REALTIME_CHANNEL_STATES",
"variant": "declaration",
"kind": 32,
@@ -81720,9 +139252,9 @@
"sources": [
{
"fileName": "packages/core/realtime-js/src/RealtimeChannel.ts",
- "line": 113,
+ "line": 148,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/realtime-js/src/RealtimeChannel.ts#L113"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/realtime-js/src/RealtimeChannel.ts#L148"
}
],
"type": {
@@ -81744,30 +139276,30 @@
"groups": [
{
"title": "Enumerations",
- "children": [680, 685, 690, 694]
+ "children": [758, 763, 768, 772]
},
{
"title": "Classes",
- "children": [59, 381, 1, 700]
+ "children": [59, 459, 1, 778]
},
{
"title": "Interfaces",
- "children": [717, 767]
+ "children": [795, 845]
},
{
"title": "Type Aliases",
- "children": [366, 380, 573, 602, 609, 616, 640, 621, 631, 650, 660, 670, 679]
+ "children": [444, 458, 651, 680, 687, 694, 718, 699, 709, 728, 738, 748, 757]
},
{
"title": "Variables",
- "children": [699]
+ "children": [777]
}
],
"packageName": "@supabase/realtime-js",
"readme": [
{
"kind": "text",
- "text": " \n\n \n \n \n \n \n \n \n\n
Supabase Realtime Client \n\n Send ephemeral messages with Broadcast , track and synchronize state with Presence , and listen to database changes with Postgres Change Data Capture (CDC) . \n\n \n Guides \n ·\n Reference Docs \n ·\n Multiplayer Demo \n
\n\n\n\n\n[](https://pkg.pr.new/~/supabase/realtime-js)\n\n
\n\n# Overview\n\nThis client enables you to use the following Supabase Realtime's features:\n\n- **Broadcast**: send ephemeral messages from client to clients with minimal latency. Use cases include sharing cursor positions between users.\n- **Presence**: track and synchronize shared state across clients with the help of CRDTs. Use cases include tracking which users are currently viewing a specific webpage.\n- **Postgres Change Data Capture (CDC)**: listen for changes in your PostgreSQL database and send them to clients.\n\n# Usage\n\n## Installing the Package\n\n"
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase Realtime JS SDK \n\n Send ephemeral messages with Broadcast , track and synchronize state with Presence , and listen to database changes with Postgres Change Data Capture (CDC) . \n\n \n Guides \n ·\n Reference Docs \n ·\n Multiplayer Demo \n
\n\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/realtime-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/realtime-js)\n\n
\n\n# Overview\n\nThis SDK enables you to use the following Supabase Realtime's features:\n\n- **Broadcast**: send ephemeral messages from client to clients with minimal latency. Use cases include sharing cursor positions between users.\n- **Presence**: track and synchronize shared state across clients with the help of CRDTs. Use cases include tracking which users are currently viewing a specific webpage.\n- **Postgres Change Data Capture (CDC)**: listen for changes in your PostgreSQL database and send them to clients.\n\n# Usage\n\n## Installing the Package\n\n"
},
{
"kind": "code",
@@ -81979,7 +139511,7 @@
},
{
"kind": "code",
- "text": "```bash\n# Complete build (from monorepo root)\nnpx nx build realtime-js\n\n# Build with watch mode for development\nnpx nx build realtime-js --watch\n\n# Individual build targets\nnpx nx build:main realtime-js # CommonJS build (dist/main/)\nnpx nx build:module realtime-js # ES Modules build (dist/module/)\n\n# Other useful commands\nnpx nx clean realtime-js # Clean build artifacts\nnpx nx format realtime-js # Format code with Prettier\nnpx nx lint realtime-js # Run ESLint\nnpx nx typecheck realtime-js # TypeScript type checking\n```"
+ "text": "```bash\n# Complete build (from monorepo root)\nnpx nx build realtime-js\n\n# Build with watch mode for development\nnpx nx build realtime-js --watch\n\n# Individual build targets\nnpx nx build:main realtime-js # CommonJS build (dist/main/)\nnpx nx build:module realtime-js # ES Modules build (dist/module/)\n\n# Other useful commands\nnpx nx clean realtime-js # Clean build artifacts\nnpx nx lint realtime-js # Run ESLint\nnpx nx typecheck realtime-js # TypeScript type checking\n```"
},
{
"kind": "text",
@@ -82790,31 +140322,35 @@
},
"251": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "type"
},
"252": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "__type.__index"
+ "qualifiedName": "filter"
+ },
+ "253": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
"254": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "type"
+ "qualifiedName": "__type.event"
},
"255": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "filter"
+ "qualifiedName": "callback"
},
"256": {
- "sourceFileName": "",
+ "sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
"257": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "callback"
+ "qualifiedName": "__type"
},
"258": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "payload"
},
"259": {
"sourceFileName": "src/RealtimeChannel.ts",
@@ -82822,1305 +140358,1601 @@
},
"260": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "payload"
+ "qualifiedName": "__type.type"
},
"261": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "default.send"
+ "qualifiedName": "__type.event"
},
"262": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "default.send"
+ "qualifiedName": "__type.payload"
},
"263": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "args"
+ "qualifiedName": "default.on"
},
"264": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "__type"
+ "qualifiedName": "T"
},
"265": {
"sourceFileName": "src/RealtimeChannel.ts",
- "qualifiedName": "__type.type"
+ "qualifiedName": "__type"
},
"266": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "268": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "269": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "270": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "271": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "267": {
+ "272": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "273": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "274": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "275": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "276": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "277": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "278": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "279": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.payload"
},
- "268": {
+ "280": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "281": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "282": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "283": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "270": {
+ "285": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "286": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "287": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "288": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "289": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "290": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "291": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "292": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "293": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "294": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "295": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "296": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "297": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "298": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "299": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "300": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "302": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "303": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "304": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "305": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "306": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "307": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "308": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "309": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "310": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "311": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "312": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "313": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "314": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "315": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "316": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "317": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "319": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "320": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "321": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "322": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "323": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "324": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "325": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "326": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "327": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "328": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "329": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "330": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "opts"
},
- "271": {
+ "331": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "272": {
+ "332": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "333": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "334": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "335": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "336": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "337": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.status"
+ },
+ "338": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.error"
+ },
+ "339": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "340": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "341": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "args"
+ },
+ "342": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "343": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "344": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "345": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "346": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "274": {
+ "348": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "349": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "350": {
+ "sourceFileName": "src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "352": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "275": {
+ "353": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.updateJoinPayload"
},
- "276": {
+ "354": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "payload"
},
- "277": {
+ "355": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "278": {
+ "356": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "280": {
+ "358": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "281": {
+ "359": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.unsubscribe"
},
- "282": {
+ "360": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "timeout"
},
- "283": {
+ "361": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "284": {
+ "362": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "default.teardown"
},
- "366": {
+ "444": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelOptions"
},
- "367": {
+ "445": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "368": {
+ "446": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.config"
},
- "369": {
+ "447": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "370": {
+ "448": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.broadcast"
},
- "371": {
+ "449": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "372": {
+ "450": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.self"
},
- "373": {
+ "451": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.ack"
},
- "374": {
+ "452": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.replay"
},
- "375": {
+ "453": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.presence"
},
- "376": {
+ "454": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "377": {
+ "455": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.key"
},
- "378": {
+ "456": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.enabled"
},
- "379": {
+ "457": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.private"
},
- "380": {
+ "458": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimeChannelSendResponse"
},
- "381": {
+ "459": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "382": {
+ "460": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.__constructor"
},
- "383": {
+ "461": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default"
},
- "384": {
+ "462": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "endPoint"
},
- "385": {
+ "463": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "options"
},
- "386": {
+ "464": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.accessTokenValue"
},
- "387": {
+ "465": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.apiKey"
},
- "388": {
+ "466": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.channels"
},
- "389": {
+ "467": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.endPoint"
},
- "390": {
+ "468": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.httpEndpoint"
},
- "391": {
+ "469": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.headers"
},
- "392": {
+ "470": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "393": {
+ "471": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "395": {
+ "473": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.params"
},
- "396": {
+ "474": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "397": {
+ "475": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "399": {
+ "477": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.timeout"
},
- "400": {
+ "478": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.transport"
},
- "401": {
+ "479": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatIntervalMs"
},
- "402": {
+ "480": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatTimer"
},
- "403": {
+ "481": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.pendingHeartbeatRef"
},
- "404": {
+ "482": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.heartbeatCallback"
},
- "405": {
+ "483": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "406": {
+ "484": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "407": {
+ "485": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "408": {
+ "486": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.ref"
},
- "409": {
+ "487": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.reconnectTimer"
},
- "410": {
+ "488": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.logger"
},
- "411": {
+ "489": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.logLevel"
},
- "412": {
+ "490": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.encode"
},
- "413": {
+ "491": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.decode"
},
- "414": {
+ "492": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.reconnectAfterMs"
},
- "415": {
+ "493": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.conn"
},
- "416": {
+ "494": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.sendBuffer"
},
- "417": {
+ "495": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.serializer"
},
- "418": {
+ "496": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.stateChangeCallbacks"
},
- "419": {
+ "497": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "420": {
+ "498": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.open"
},
- "421": {
+ "499": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.close"
},
- "422": {
+ "500": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.error"
},
- "423": {
+ "501": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.message"
},
- "424": {
+ "502": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.fetch"
},
- "425": {
+ "503": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "426": {
+ "504": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "fetch"
},
- "427": {
+ "505": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "input"
},
- "428": {
+ "506": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "init"
},
- "429": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "507": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "fetch"
},
- "430": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "508": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "input"
},
- "431": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
+ "509": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
"qualifiedName": "init"
},
- "432": {
+ "510": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.accessToken"
},
- "433": {
+ "511": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "434": {
+ "512": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "435": {
+ "513": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.worker"
},
- "436": {
+ "514": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.workerUrl"
},
- "437": {
+ "515": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.workerRef"
},
- "441": {
+ "519": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "442": {
+ "520": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.connect"
},
- "443": {
+ "521": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "444": {
+ "522": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.endpointURL"
},
- "445": {
+ "523": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "446": {
+ "524": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.disconnect"
},
- "447": {
+ "525": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "code"
},
- "448": {
+ "526": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "reason"
},
- "449": {
+ "527": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "450": {
+ "528": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.getChannels"
},
- "451": {
+ "529": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "452": {
+ "530": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.removeChannel"
},
- "453": {
+ "531": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "channel"
},
- "454": {
+ "532": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "455": {
+ "533": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.removeAllChannels"
},
- "456": {
+ "534": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "457": {
+ "535": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.log"
},
- "458": {
+ "536": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "kind"
},
- "459": {
+ "537": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "msg"
},
- "460": {
+ "538": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "461": {
+ "539": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "462": {
+ "540": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.connectionState"
},
- "463": {
+ "541": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "464": {
+ "542": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isConnected"
},
- "465": {
+ "543": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "466": {
+ "544": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isConnecting"
},
- "467": {
+ "545": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "468": {
+ "546": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.isDisconnecting"
},
- "469": {
+ "547": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "470": {
+ "548": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.channel"
},
- "471": {
+ "549": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "topic"
},
- "472": {
+ "550": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "params"
},
- "473": {
+ "551": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "474": {
+ "552": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.push"
},
- "475": {
+ "553": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "data"
},
- "476": {
+ "554": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "477": {
+ "555": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.setAuth"
},
- "478": {
+ "556": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "token"
},
- "479": {
+ "557": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "480": {
+ "558": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.sendHeartbeat"
},
- "481": {
+ "559": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "482": {
+ "560": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.onHeartbeat"
},
- "483": {
+ "561": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "callback"
},
- "484": {
+ "562": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "485": {
+ "563": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "486": {
+ "564": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "487": {
+ "565": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "488": {
+ "566": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "default.flushSendBuffer"
},
- "573": {
+ "651": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "RealtimeClientOptions"
},
- "574": {
+ "652": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "575": {
+ "653": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.transport"
},
- "576": {
+ "654": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.timeout"
},
- "577": {
+ "655": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatIntervalMs"
},
- "578": {
+ "656": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.heartbeatCallback"
},
- "579": {
+ "657": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "580": {
+ "658": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "581": {
+ "659": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "status"
},
- "582": {
+ "660": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.logger"
},
- "583": {
+ "661": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.encode"
},
- "584": {
+ "662": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.decode"
},
- "585": {
+ "663": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.reconnectAfterMs"
},
- "586": {
+ "664": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.headers"
},
- "587": {
+ "665": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "588": {
+ "666": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "590": {
+ "668": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.params"
},
- "591": {
+ "669": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "592": {
+ "670": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.__index"
},
- "594": {
+ "672": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.log_level"
},
- "595": {
+ "673": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.logLevel"
},
- "596": {
+ "674": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.fetch"
},
- "597": {
+ "675": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.worker"
},
- "598": {
+ "676": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.workerUrl"
},
- "599": {
+ "677": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.accessToken"
},
- "600": {
+ "678": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "601": {
+ "679": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "602": {
+ "680": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "RealtimeMessage"
},
- "603": {
+ "681": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type"
},
- "604": {
+ "682": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.topic"
},
- "605": {
+ "683": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.event"
},
- "606": {
+ "684": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.payload"
},
- "607": {
+ "685": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.ref"
},
- "608": {
+ "686": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "__type.join_ref"
},
- "609": {
+ "687": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesFilter"
},
- "610": {
+ "688": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "611": {
+ "689": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.event"
},
- "612": {
+ "690": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.schema"
},
- "613": {
+ "691": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.table"
},
- "614": {
+ "692": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.filter"
},
- "615": {
+ "693": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "616": {
+ "694": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresChangesPayload"
},
- "617": {
+ "695": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "618": {
+ "696": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "619": {
+ "697": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "621": {
+ "699": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresInsertPayload"
},
- "622": {
+ "700": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "623": {
+ "701": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "624": {
+ "702": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "625": {
+ "703": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "626": {
+ "704": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "627": {
+ "705": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "628": {
+ "706": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "629": {
+ "707": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "631": {
+ "709": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresUpdatePayload"
},
- "632": {
+ "710": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "633": {
+ "711": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "634": {
+ "712": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "635": {
+ "713": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "636": {
+ "714": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "637": {
+ "715": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "638": {
+ "716": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "640": {
+ "718": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "RealtimePostgresDeletePayload"
},
- "641": {
+ "719": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "642": {
+ "720": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.eventType"
},
- "643": {
+ "721": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.new"
},
- "644": {
+ "722": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "645": {
+ "723": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.old"
},
- "646": {
+ "724": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "T"
},
- "647": {
+ "725": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "648": {
+ "726": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "__type.__index"
},
- "650": {
+ "728": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceJoinPayload"
},
- "651": {
+ "729": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "652": {
+ "730": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "653": {
+ "731": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "654": {
+ "732": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "655": {
+ "733": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.newPresences"
},
- "656": {
+ "734": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "657": {
+ "735": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "658": {
+ "736": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "660": {
+ "738": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceLeavePayload"
},
- "661": {
+ "739": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "662": {
+ "740": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.event"
},
- "663": {
+ "741": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.key"
},
- "664": {
+ "742": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.currentPresences"
},
- "665": {
+ "743": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.leftPresences"
},
- "666": {
+ "744": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "667": {
+ "745": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "668": {
+ "746": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "670": {
+ "748": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "RealtimePresenceState"
},
- "671": {
+ "749": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "672": {
+ "750": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "674": {
+ "752": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "T"
},
- "675": {
+ "753": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "676": {
+ "754": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type.__index"
},
- "678": {
+ "756": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "679": {
+ "757": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "RealtimeRemoveChannelResponse"
},
- "680": {
+ "758": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "681": {
+ "759": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
},
- "682": {
+ "760": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
},
- "683": {
+ "761": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "684": {
+ "762": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "685": {
+ "763": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "686": {
+ "764": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "687": {
+ "765": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "688": {
+ "766": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "689": {
+ "767": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "690": {
+ "768": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "691": {
+ "769": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "692": {
+ "770": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "693": {
+ "771": {
"sourceFileName": "src/RealtimePresence.ts",
"qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "694": {
+ "772": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "695": {
+ "773": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "696": {
+ "774": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "697": {
+ "775": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "698": {
+ "776": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "699": {
+ "777": {
"sourceFileName": "src/RealtimeChannel.ts",
"qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "700": {
+ "778": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory"
},
- "703": {
+ "781": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "704": {
+ "782": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "705": {
+ "783": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "706": {
+ "784": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "707": {
+ "785": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "url"
},
- "708": {
+ "786": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "protocols"
},
- "709": {
+ "787": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "710": {
+ "788": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.createWebSocket"
},
- "711": {
+ "789": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "url"
},
- "712": {
+ "790": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "protocols"
},
- "713": {
+ "791": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "714": {
+ "792": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "717": {
+ "795": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike"
},
- "718": {
+ "796": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CONNECTING"
},
- "719": {
+ "797": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.OPEN"
},
- "720": {
+ "798": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSING"
},
- "721": {
+ "799": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.CLOSED"
},
- "722": {
+ "800": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.readyState"
},
- "723": {
+ "801": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.url"
},
- "724": {
+ "802": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.protocol"
},
- "725": {
+ "803": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "726": {
+ "804": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.close"
},
- "727": {
+ "805": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "code"
},
- "728": {
+ "806": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "reason"
},
- "729": {
+ "807": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "730": {
+ "808": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.send"
},
- "731": {
+ "809": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "data"
},
- "732": {
+ "810": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onopen"
},
- "733": {
+ "811": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "734": {
+ "812": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "735": {
+ "813": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "736": {
+ "814": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "737": {
+ "815": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onmessage"
},
- "738": {
+ "816": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "739": {
+ "817": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "740": {
+ "818": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "741": {
+ "819": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "742": {
+ "820": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onclose"
},
- "743": {
+ "821": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "744": {
+ "822": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "745": {
+ "823": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "746": {
+ "824": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "747": {
+ "825": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.onerror"
},
- "748": {
+ "826": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "749": {
+ "827": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "750": {
+ "828": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "this"
},
- "751": {
+ "829": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "ev"
},
- "752": {
+ "830": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "753": {
+ "831": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.addEventListener"
},
- "754": {
+ "832": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "755": {
+ "833": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "756": {
+ "834": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "757": {
+ "835": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.removeEventListener"
},
- "758": {
+ "836": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "type"
},
- "759": {
+ "837": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "listener"
},
- "760": {
+ "838": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.binaryType"
},
- "761": {
+ "839": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.bufferedAmount"
},
- "762": {
+ "840": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.extensions"
},
- "763": {
+ "841": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "WebSocketLike.dispatchEvent"
},
- "764": {
+ "842": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "765": {
+ "843": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "766": {
+ "844": {
"sourceFileName": "src/lib/websocket-factory.ts",
"qualifiedName": "event"
},
- "767": {
+ "845": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "768": {
+ "846": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "769": {
+ "847": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor"
},
- "770": {
+ "848": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "address"
},
- "771": {
+ "849": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "subprotocols"
},
- "772": {
+ "850": {
"sourceFileName": "src/RealtimeClient.ts",
"qualifiedName": "WebSocketLikeConstructor.__index"
}
@@ -84150,126 +141982,11834 @@
"flags": {},
"children": [
{
- "id": 632,
- "name": "StorageApiError",
+ "id": 1181,
+ "name": "StorageVectorsErrorCode",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error codes specific to S3 Vectors API\nMaps AWS service errors to application-friendly error codes"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1182,
+ "name": "InternalError",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Internal server fault (HTTP 500)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 67,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L67"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "InternalError"
+ }
+ },
+ {
+ "id": 1185,
+ "name": "S3VectorBucketNotEmpty",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Delete bucket while not empty (HTTP 400)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 73,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L73"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "S3VectorBucketNotEmpty"
+ }
+ },
+ {
+ "id": 1183,
+ "name": "S3VectorConflictException",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resource already exists / conflict (HTTP 409)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 69,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L69"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "S3VectorConflictException"
+ }
+ },
+ {
+ "id": 1186,
+ "name": "S3VectorMaxBucketsExceeded",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Exceeds bucket quota/limit (HTTP 400)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 75,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L75"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "S3VectorMaxBucketsExceeded"
+ }
+ },
+ {
+ "id": 1187,
+ "name": "S3VectorMaxIndexesExceeded",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Exceeds index quota/limit (HTTP 400)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 77,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L77"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "S3VectorMaxIndexesExceeded"
+ }
+ },
+ {
+ "id": 1184,
+ "name": "S3VectorNotFoundException",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resource not found (HTTP 404)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 71,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L71"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "S3VectorNotFoundException"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [1182, 1185, 1183, 1186, 1187, 1184]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 65,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L65"
+ }
+ ]
+ },
+ {
+ "id": 729,
+ "name": "StorageApiError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 730,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 18,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L18"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 731,
+ "name": "StorageApiError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 18,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L18"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 732,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 733,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 734,
+ "name": "statusCode",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 729,
+ "name": "StorageApiError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 726,
+ "name": "StorageError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 725,
+ "name": "StorageError.constructor"
+ }
+ },
+ {
+ "id": 735,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 15,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L15"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 736,
+ "name": "statusCode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 16,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L16"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 737,
+ "name": "toJSON",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 25,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L25"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 738,
+ "name": "toJSON",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 25,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L25"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 739,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 741,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 28,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L28"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 740,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 27,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L27"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 742,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 29,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L29"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 743,
+ "name": "statusCode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 30,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L30"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [741, 740, 742, 743]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 26,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L26"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [730]
+ },
+ {
+ "title": "Properties",
+ "children": [735, 736]
+ },
+ {
+ "title": "Methods",
+ "children": [737]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 14,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L14"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 500,
+ "name": "StorageClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 501,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 12,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L12"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 502,
+ "name": "StorageClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 12,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L12"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 503,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 504,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 505,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 14,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L14"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 506,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 14,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L14"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 507,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 508,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 509,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 510,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 511,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 512,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 513,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 514,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 515,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 516,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 611,
+ "name": "StorageClientOptions",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 500,
+ "name": "StorageClient",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 117,
+ "name": "default.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 116,
+ "name": "default.constructor"
+ }
+ },
+ {
+ "id": 522,
+ "name": "analytics",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 61,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L61"
+ }
+ ],
+ "getSignature": {
+ "id": 523,
+ "name": "analytics",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Access analytics storage operations using Iceberg tables."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A StorageAnalyticsApi instance configured with the current storage settings."
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = createClient(url, key)\nconst analytics = client.storage.analytics\n\n// Create an analytics bucket\nawait analytics.createBucket('my-analytics-bucket')\n\n// List all analytics buckets\nconst { data: buckets } = await analytics.listBuckets()\n\n// Delete an analytics bucket\nawait analytics.deleteBucket('old-analytics-bucket')\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 61,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L61"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 47,
+ "name": "StorageAnalyticsApi",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 520,
+ "name": "vectors",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 35,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L35"
+ }
+ ],
+ "getSignature": {
+ "id": 521,
+ "name": "vectors",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Access vector storage operations."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A StorageVectorsClient instance configured with the current storage settings."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 35,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L35"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 752,
+ "name": "StorageVectorsClient",
+ "package": "@supabase/storage-js"
+ }
+ }
+ },
+ {
+ "id": 558,
+ "name": "createBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 120,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 559,
+ "name": "createBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new Storage bucket"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "newly created bucket id"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 120,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 560,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A unique identifier for the bucket you are creating."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 561,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 562,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 565,
+ "name": "allowedMimeTypes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "specifies the allowed mime types that this bucket can accept during upload.\nThe default value is null, which allows files with all mime types to be uploaded.\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 125,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 564,
+ "name": "fileSizeLimit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "specifies the max file size in bytes that can be uploaded to this bucket.\nThe global file size limit takes precedence over this value.\nThe default value is null, which doesn't set a per bucket file size limit."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 124,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ }
+ },
+ {
+ "id": 563,
+ "name": "public",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations. By default, buckets are private."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 123,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 566,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "(private-beta) specifies the bucket type. see "
+ },
+ {
+ "kind": "code",
+ "text": "`BucketType`"
+ },
+ {
+ "kind": "text",
+ "text": " for more details.\n - default bucket type is "
+ },
+ {
+ "kind": "code",
+ "text": "`STANDARD`"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 126,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 614,
+ "name": "BucketType",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [565, 564, 563, 566]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 122,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ }
+ ]
+ }
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 567,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 568,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 132,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 615,
+ "name": "Bucket",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "literal",
+ "value": "name"
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 569,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 133,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [568, 569]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 131,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 570,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 571,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 136,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 572,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 137,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [571, 572]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 135,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 167,
+ "name": "default.createBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 166,
+ "name": "default.createBucket"
+ }
+ },
+ {
+ "id": 600,
+ "name": "deleteBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 263,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 601,
+ "name": "deleteBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes an existing bucket. A bucket can't be deleted with existing objects inside it.\nYou must first "
+ },
+ {
+ "kind": "code",
+ "text": "`empty()`"
+ },
+ {
+ "kind": "text",
+ "text": " the bucket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 263,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 602,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique identifier of the bucket you would like to delete."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 603,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 604,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 265,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 605,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 606,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 265,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [606]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 265,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 607,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 266,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [604, 607]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 264,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 608,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 609,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 269,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 610,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 270,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [609, 610]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 268,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 209,
+ "name": "default.deleteBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 208,
+ "name": "default.deleteBucket"
+ }
+ },
+ {
+ "id": 589,
+ "name": "emptyBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 227,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 590,
+ "name": "emptyBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Removes all objects inside a single bucket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 227,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 591,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique identifier of the bucket you would like to empty."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 592,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 593,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 229,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 594,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 595,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 229,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [595]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 229,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 596,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 230,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [593, 596]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 228,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 597,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 598,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 233,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 599,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 234,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [598, 599]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 232,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 198,
+ "name": "default.emptyBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 197,
+ "name": "default.emptyBucket"
+ }
+ },
+ {
+ "id": 517,
+ "name": "from",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 26,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L26"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 518,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Perform file operation in a bucket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 26,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L26"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 519,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The bucket id to operate on."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 223,
+ "name": "StorageFileApi",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 549,
+ "name": "getBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 80,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 550,
+ "name": "getBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves the details of an existing Storage bucket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 80,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 551,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique identifier of the bucket you would like to retrieve."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 552,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 553,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 82,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 615,
+ "name": "Bucket",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 554,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 83,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [553, 554]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 81,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 555,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 556,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 86,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 557,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 87,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [556, 557]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 85,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 158,
+ "name": "default.getBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 157,
+ "name": "default.getBucket"
+ }
+ },
+ {
+ "id": 540,
+ "name": "listBuckets",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 47,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 541,
+ "name": "listBuckets",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves the details of all Storage buckets within an existing project."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 47,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 542,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 625,
+ "name": "ListBucketOptions",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 543,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 544,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 49,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 615,
+ "name": "Bucket",
+ "package": "@supabase/storage-js"
+ }
+ }
+ },
+ {
+ "id": 545,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 50,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [544, 545]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 48,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 546,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 547,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 53,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 548,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 54,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [547, 548]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 52,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 149,
+ "name": "default.listBuckets"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 148,
+ "name": "default.listBuckets"
+ }
+ },
+ {
+ "id": 538,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 39,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 539,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 39,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 147,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 146,
+ "name": "default.throwOnError"
+ }
+ },
+ {
+ "id": 573,
+ "name": "updateBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 179,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 574,
+ "name": "updateBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates a Storage bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 179,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 575,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A unique identifier for the bucket you are updating."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 576,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 577,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 580,
+ "name": "allowedMimeTypes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "specifies the allowed mime types that this bucket can accept during upload.\nThe default value is null, which allows files with all mime types to be uploaded.\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 184,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 579,
+ "name": "fileSizeLimit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "specifies the max file size in bytes that can be uploaded to this bucket.\nThe global file size limit takes precedence over this value.\nThe default value is null, which doesn't set a per bucket file size limit."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 183,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ }
+ },
+ {
+ "id": 578,
+ "name": "public",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 182,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [580, 579, 578]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 181,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 581,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 582,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 188,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 583,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 584,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 188,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [584]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 188,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 585,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 189,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [582, 585]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 187,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 586,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 587,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 192,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 588,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 193,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [587, 588]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
+ "line": 191,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 182,
+ "name": "default.updateBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 181,
+ "name": "default.updateBucket"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [501]
+ },
+ {
+ "title": "Accessors",
+ "children": [522, 520]
+ },
+ {
+ "title": "Methods",
+ "children": [558, 600, 589, 517, 549, 540, 538, 573]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 11,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L11"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "default",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 724,
+ "name": "StorageError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 725,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 4,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L4"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 726,
+ "name": "StorageError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 4,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L4"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 727,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [725]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 1,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L1"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 729,
+ "name": "StorageApiError"
+ },
+ {
+ "type": "reference",
+ "target": 745,
+ "name": "StorageUnknownError"
+ }
+ ]
+ },
+ {
+ "id": 745,
+ "name": "StorageUnknownError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 746,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 38,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L38"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 747,
+ "name": "StorageUnknownError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 38,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L38"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 748,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 749,
+ "name": "originalError",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 745,
+ "name": "StorageUnknownError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 726,
+ "name": "StorageError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 725,
+ "name": "StorageError.constructor"
+ }
+ },
+ {
+ "id": 750,
+ "name": "originalError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 36,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L36"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [746]
+ },
+ {
+ "title": "Properties",
+ "children": [750]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 35,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L35"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 1158,
+ "name": "StorageVectorsApiError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "API error returned from S3 Vectors service\nIncludes HTTP status code and service-specific error code"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1159,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 30,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1160,
+ "name": "StorageVectorsApiError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 30,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L30"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1161,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1162,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1163,
+ "name": "statusCode",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1158,
+ "name": "StorageVectorsApiError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1155,
+ "name": "StorageVectorsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1154,
+ "name": "StorageVectorsError.constructor"
+ }
+ },
+ {
+ "id": 1164,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 27,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L27"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1165,
+ "name": "statusCode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 28,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L28"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1166,
+ "name": "toJSON",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 37,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1167,
+ "name": "toJSON",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 37,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L37"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1168,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1170,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 40,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L40"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 1169,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 39,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L39"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 1171,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 41,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L41"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 1172,
+ "name": "statusCode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 42,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L42"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1170, 1169, 1171, 1172]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 38,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L38"
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1159]
+ },
+ {
+ "title": "Properties",
+ "children": [1164, 1165]
+ },
+ {
+ "title": "Methods",
+ "children": [1166]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 26,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L26"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1153,
+ "name": "StorageVectorsError",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 752,
+ "name": "StorageVectorsClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Main client for interacting with S3 Vectors API\nProvides access to bucket, index, and vector data operations\n\n**Usage Patterns:**\n\n1. **Via StorageClient (recommended for most use cases):**\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient(url, headers)\nconst vectors = storageClient.vectors\n\n// Use vector operations\nawait vectors.createBucket('embeddings-prod')\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({ ... })\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n2. **Standalone (for vector-only applications):**\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\nconst vectorsClient = new StorageVectorsClient('https://api.example.com', {\n headers: { 'Authorization': 'Bearer token' }\n})\n\n// Access bucket operations\nawait vectorsClient.createBucket('embeddings-prod')\n\n// Access index operations via buckets\nconst bucket = vectorsClient.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// Access vector operations via index\nconst index = bucket.index('documents')\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5,\n returnDistance: true\n})\n```"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 753,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 85,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L85"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 754,
+ "name": "StorageVectorsClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 85,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L85"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 755,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 756,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 892,
+ "name": "StorageVectorsClientOptions",
+ "package": "@supabase/storage-js"
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 752,
+ "name": "StorageVectorsClient",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 907,
+ "name": "default.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 906,
+ "name": "default.constructor"
+ }
+ },
+ {
+ "id": 776,
+ "name": "createBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 71,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L71"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 777,
+ "name": "createBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorConflictException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket already exists (HTTP 409)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorMaxBucketsExceeded`"
+ },
+ {
+ "kind": "text",
+ "text": " if quota exceeded (HTTP 400)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 71,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L71"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 778,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique name for the vector bucket"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 938,
+ "name": "default.createBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 937,
+ "name": "default.createBucket"
+ }
+ },
+ {
+ "id": 787,
+ "name": "deleteBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 198,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L198"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 788,
+ "name": "deleteBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorBucketNotEmpty`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket contains indexes (HTTP 400)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 198,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L198"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 789,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket to delete"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 949,
+ "name": "default.deleteBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 948,
+ "name": "default.deleteBucket"
+ }
+ },
+ {
+ "id": 757,
+ "name": "from",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 112,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 758,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Access operations for a specific vector bucket\nReturns a scoped client for index and vector operations within the bucket"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Bucket-scoped client with index and vector operations"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\n\n// Create an index in this bucket\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine'\n})\n\n// List indexes in this bucket\nconst { data } = await bucket.listIndexes()\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 112,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L112"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 759,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 790,
+ "name": "VectorBucketScope",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 779,
+ "name": "getBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 110,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L110"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 780,
+ "name": "getBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 110,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L110"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 781,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket to retrieve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 782,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 783,
+ "name": "vectorBucket",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 112,
+ "character": 27,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L112"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1053,
+ "name": "VectorBucket",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [783]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 112,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L112"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 941,
+ "name": "default.getBucket"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 940,
+ "name": "default.getBucket"
+ }
+ },
+ {
+ "id": 784,
+ "name": "listBuckets",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 158,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L158"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 785,
+ "name": "listBuckets",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets and pagination token"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 158,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L158"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 786,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Listing options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1085,
+ "name": "ListVectorBucketsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "prefix": [
+ {
+ "kind": "text",
+ "text": "Filter buckets by name prefix"
+ }
+ ],
+ "maxResults": [
+ {
+ "kind": "text",
+ "text": "Maximum results per page (default: 100)"
+ }
+ ],
+ "nextToken": [
+ {
+ "kind": "text",
+ "text": "Pagination token from previous response"
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1089,
+ "name": "ListVectorBucketsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 946,
+ "name": "default.listBuckets"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 945,
+ "name": "default.listBuckets"
+ }
+ },
+ {
+ "id": 774,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 46,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L46"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 775,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 46,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L46"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 936,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 935,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [753]
+ },
+ {
+ "title": "Methods",
+ "children": [776, 787, 757, 779, 784, 774]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 84,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L84"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 905,
+ "name": "default",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 1153,
+ "name": "StorageVectorsError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Base error class for all Storage Vectors errors"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1154,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 7,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1155,
+ "name": "StorageVectorsError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 7,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L7"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1156,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1153,
+ "name": "StorageVectorsError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1154]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 4,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L4"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 1158,
+ "name": "StorageVectorsApiError"
+ },
+ {
+ "type": "reference",
+ "target": 1174,
+ "name": "StorageVectorsUnknownError"
+ }
+ ]
+ },
+ {
+ "id": 1174,
+ "name": "StorageVectorsUnknownError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unknown error that doesn't match expected error patterns\nWraps the original error for debugging"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1175,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 54,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1176,
+ "name": "StorageVectorsUnknownError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 54,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L54"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1177,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1178,
+ "name": "originalError",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1174,
+ "name": "StorageVectorsUnknownError",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1155,
+ "name": "StorageVectorsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1154,
+ "name": "StorageVectorsError.constructor"
+ }
+ },
+ {
+ "id": 1179,
+ "name": "originalError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 52,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L52"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1175]
+ },
+ {
+ "title": "Properties",
+ "children": [1179]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 51,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L51"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1153,
+ "name": "StorageVectorsError",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 905,
+ "name": "VectorBucketApi",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "API class for managing Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector buckets"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 906,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 28,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L28"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 907,
+ "name": "VectorBucketApi",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new VectorBucketApi instance"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 28,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L28"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 908,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The base URL for the storage vectors API"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 909,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP headers to include in requests"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 910,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 28,
+ "character": 36,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L28"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 911,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 28,
+ "character": 38,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L28"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 912,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 913,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional custom fetch implementation"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 914,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 915,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 916,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 917,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 918,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 919,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 920,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 905,
+ "name": "VectorBucketApi",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 937,
+ "name": "createBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 71,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L71"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 938,
+ "name": "createBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new vector bucket\nVector buckets are containers for vector indexes and their data"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorConflictException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket already exists (HTTP 409)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorMaxBucketsExceeded`"
+ },
+ {
+ "kind": "text",
+ "text": " if quota exceeded (HTTP 400)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.createBucket('embeddings-prod')\nif (error) {\n console.error('Failed to create bucket:', error.message)\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 71,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L71"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 939,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique name for the vector bucket"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 948,
+ "name": "deleteBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 198,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L198"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 949,
+ "name": "deleteBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes a vector bucket\nBucket must be empty before deletion (all indexes must be removed first)"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorBucketNotEmpty`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket contains indexes (HTTP 400)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// Delete all indexes first, then delete bucket\nconst { error } = await client.deleteBucket('old-bucket')\nif (error?.statusCode === 'S3VectorBucketNotEmpty') {\n console.error('Must delete all indexes first')\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 198,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L198"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 950,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket to delete"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 940,
+ "name": "getBucket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 110,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L110"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 941,
+ "name": "getBucket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves metadata for a specific vector bucket\nReturns bucket configuration including encryption settings and creation time"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with bucket metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.getBucket('embeddings-prod')\nif (data) {\n console.log('Bucket created at:', new Date(data.vectorBucket.creationTime! * 1000))\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 110,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L110"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 942,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket to retrieve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 943,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 944,
+ "name": "vectorBucket",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 112,
+ "character": 27,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L112"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1053,
+ "name": "VectorBucket",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [944]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 112,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L112"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 945,
+ "name": "listBuckets",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 158,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L158"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 946,
+ "name": "listBuckets",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists vector buckets with optional filtering and pagination\nSupports prefix-based filtering and paginated results"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of buckets and pagination token"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// List all buckets with prefix 'prod-'\nconst { data, error } = await client.listBuckets({ prefix: 'prod-' })\nif (data) {\n console.log('Found buckets:', data.buckets.length)\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listBuckets({ nextToken: data.nextToken })\n }\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 158,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L158"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 947,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Listing options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1085,
+ "name": "ListVectorBucketsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "prefix": [
+ {
+ "kind": "text",
+ "text": "Filter buckets by name prefix"
+ }
+ ],
+ "maxResults": [
+ {
+ "kind": "text",
+ "text": "Maximum results per page (default: 100)"
+ }
+ ],
+ "nextToken": [
+ {
+ "kind": "text",
+ "text": "Pagination token from previous response"
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1089,
+ "name": "ListVectorBucketsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 935,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 46,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L46"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 936,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorBucketApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createBucket('my-bucket') // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 46,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L46"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [906]
+ },
+ {
+ "title": "Methods",
+ "children": [937, 948, 940, 945, 935]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts",
+ "line": 16,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorBucketApi.ts#L16"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 752,
+ "name": "StorageVectorsClient"
+ }
+ ]
+ },
+ {
+ "id": 790,
+ "name": "VectorBucketScope",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scoped client for operations within a specific vector bucket\nProvides index management and access to vector operations"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 791,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 124,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L124"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 792,
+ "name": "VectorBucketScope",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 124,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L124"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 793,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 794,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 795,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 126,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L126"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 796,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 126,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L126"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 797,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 798,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 799,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 800,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 801,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 802,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 803,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 804,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 805,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 806,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 790,
+ "name": "VectorBucketScope",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 953,
+ "name": "default.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 952,
+ "name": "default.constructor"
+ }
+ },
+ {
+ "id": 808,
+ "name": "createIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 155,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L155"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 809,
+ "name": "createIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new vector index in this bucket\nConvenience method that automatically includes the bucket name"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text']\n }\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 155,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L155"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 810,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Index configuration (vectorBucketName is automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1046,
+ "name": "CreateIndexOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 984,
+ "name": "default.createIndex"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 983,
+ "name": "default.createIndex"
+ }
+ },
+ {
+ "id": 819,
+ "name": "deleteIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 213,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L213"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 820,
+ "name": "deleteIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes an index from this bucket\nConvenience method that automatically includes the bucket name"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nawait bucket.deleteIndex('old-index')\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 213,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L213"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 821,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index to delete"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 996,
+ "name": "default.deleteIndex"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 995,
+ "name": "default.deleteIndex"
+ }
+ },
+ {
+ "id": 814,
+ "name": "getIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 196,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L196"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 815,
+ "name": "getIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves metadata for a specific index in this bucket\nConvenience method that automatically includes the bucket name"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with index metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.getIndex('documents-openai')\nconsole.log('Dimension:', data?.index.dimension)\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 196,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L196"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 816,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index to retrieve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 817,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 818,
+ "name": "index",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 134,
+ "character": 27,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L134"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1057,
+ "name": "VectorIndex",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [818]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 134,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L134"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 987,
+ "name": "default.getIndex"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 986,
+ "name": "default.getIndex"
+ }
+ },
+ {
+ "id": 822,
+ "name": "index",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 242,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L242"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 823,
+ "name": "index",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Access operations for a specific index within this bucket\nReturns a scoped client for vector data operations"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Index-scoped client with vector data operations"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\n\n// Insert vectors\nawait index.putVectors({\n vectors: [\n { key: 'doc-1', data: { float32: [...] }, metadata: { title: 'Intro' } }\n ]\n})\n\n// Query similar vectors\nconst { data } = await index.queryVectors({\n queryVector: { float32: [...] },\n topK: 5\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 242,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L242"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 824,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 841,
+ "name": "VectorIndexScope",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 811,
+ "name": "listIndexes",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 175,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 812,
+ "name": "listIndexes",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists indexes in this bucket\nConvenience method that automatically includes the bucket name"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of indexes or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = client.bucket('embeddings-prod')\nconst { data } = await bucket.listIndexes({ prefix: 'documents-' })\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 175,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L175"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 813,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Listing options (vectorBucketName is automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1094,
+ "name": "ListIndexesOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1099,
+ "name": "ListIndexesResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 993,
+ "name": "default.listIndexes"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 992,
+ "name": "default.listIndexes"
+ }
+ },
+ {
+ "id": 839,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 55,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L55"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 840,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 55,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L55"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 982,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 981,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [791]
+ },
+ {
+ "title": "Methods",
+ "children": [808, 819, 814, 822, 811, 839]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 121,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L121"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 951,
+ "name": "default",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 999,
+ "name": "VectorDataApi",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "API class for managing Vector Data within Vector Indexes\nProvides methods for inserting, querying, listing, and deleting vector embeddings"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1000,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 27,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L27"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1001,
+ "name": "VectorDataApi",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 27,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L27"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1002,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1003,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1004,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 27,
+ "character": 36,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L27"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1005,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 27,
+ "character": 38,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L27"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1006,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 1007,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1008,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1009,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1010,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1011,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1012,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1013,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1014,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 999,
+ "name": "VectorDataApi",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1043,
+ "name": "deleteVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 320,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L320"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1044,
+ "name": "deleteVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes vectors by their keys in batch\nAccepts 1-500 keys per request"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket or index doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { error } = await client.deleteVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\nif (!error) {\n console.log('Vectors deleted successfully')\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 320,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L320"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1045,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector deletion options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1116,
+ "name": "DeleteVectorsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ],
+ "keys": [
+ {
+ "kind": "text",
+ "text": "Array of vector keys to delete (1-500 items)"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1034,
+ "name": "getVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 138,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L138"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1035,
+ "name": "getVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves vectors by their keys in batch\nOptionally includes vector data and/or metadata in response\nAdditional permissions required when returning data or metadata"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of vectors or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket or index doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.getVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n keys: ['doc-1', 'doc-2', 'doc-3'],\n returnData: false, // Don't return embeddings\n returnMetadata: true // Return metadata only\n})\nif (data) {\n data.vectors.forEach(v => console.log(v.key, v.metadata))\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 138,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L138"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1036,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector retrieval options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1108,
+ "name": "GetVectorsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ],
+ "keys": [
+ {
+ "kind": "text",
+ "text": "Array of vector keys to retrieve"
+ }
+ ],
+ "returnData": [
+ {
+ "kind": "text",
+ "text": "Whether to include vector embeddings (requires permission)"
+ }
+ ],
+ "returnMetadata": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata (requires permission)"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1114,
+ "name": "GetVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1037,
+ "name": "listVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 206,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L206"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1038,
+ "name": "listVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists/scans vectors in an index with pagination\nSupports parallel scanning via segment configuration for high-throughput scenarios\nAdditional permissions required when returning data or metadata"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of vectors, pagination token, or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket or index doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// Simple pagination\nlet nextToken: string | undefined\ndo {\n const { data, error } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n maxResults: 500,\n nextToken,\n returnMetadata: true\n })\n if (error) break\n console.log('Batch:', data.vectors.length)\n nextToken = data.nextToken\n} while (nextToken)\n\n// Parallel scanning (4 concurrent workers)\nconst workers = [0, 1, 2, 3].map(async (segmentIndex) => {\n const { data } = await client.listVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n segmentCount: 4,\n segmentIndex,\n returnMetadata: true\n })\n return data?.vectors || []\n})\nconst results = await Promise.all(workers)\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 206,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L206"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1039,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector listing options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1120,
+ "name": "ListVectorsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ],
+ "maxResults": [
+ {
+ "kind": "text",
+ "text": "Maximum results per page (default: 500, max: 1000)"
+ }
+ ],
+ "nextToken": [
+ {
+ "kind": "text",
+ "text": "Pagination token from previous response"
+ }
+ ],
+ "returnData": [
+ {
+ "kind": "text",
+ "text": "Whether to include vector embeddings (requires permission)"
+ }
+ ],
+ "returnMetadata": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata (requires permission)"
+ }
+ ],
+ "segmentCount": [
+ {
+ "kind": "text",
+ "text": "Total parallel segments (1-16) for distributed scanning"
+ }
+ ],
+ "segmentIndex": [
+ {
+ "kind": "text",
+ "text": "Zero-based segment index (0 to segmentCount-1)"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1129,
+ "name": "ListVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1031,
+ "name": "putVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 85,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L85"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1032,
+ "name": "putVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Inserts or updates vectors in batch (upsert operation)\nAccepts 1-500 vectors per request. Larger batches should be split"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorConflictException`"
+ },
+ {
+ "kind": "text",
+ "text": " if duplicate key conflict occurs (HTTP 409)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket or index doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.putVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n metadata: { title: 'Introduction', page: 1 }\n },\n {\n key: 'doc-2',\n data: { float32: [0.4, 0.5, 0.6, ...] },\n metadata: { title: 'Conclusion', page: 42 }\n }\n ]\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 85,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L85"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1033,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector insertion options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1104,
+ "name": "PutVectorsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Name of the target index"
+ }
+ ],
+ "vectors": [
+ {
+ "kind": "text",
+ "text": "Array of vectors to insert/update (1-500 items)"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1040,
+ "name": "queryVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 277,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L277"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1041,
+ "name": "queryVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Queries for similar vectors using approximate nearest neighbor (ANN) search\nReturns top-K most similar vectors based on the configured distance metric\nSupports optional metadata filtering (requires GetVectors permission)"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of similar vectors ordered by distance"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket or index doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// Semantic search with filtering\nconst { data, error } = await client.queryVectors({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n queryVector: { float32: [0.1, 0.2, 0.3, ...] }, // 1536 dimensions\n topK: 5,\n filter: {\n category: 'technical',\n published: true\n },\n returnDistance: true,\n returnMetadata: true\n})\nif (data) {\n data.matches.forEach(match => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 277,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L277"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1042,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1132,
+ "name": "QueryVectorsOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ],
+ "queryVector": [
+ {
+ "kind": "text",
+ "text": "Query embedding to find similar vectors"
+ }
+ ],
+ "topK": [
+ {
+ "kind": "text",
+ "text": "Number of nearest neighbors to return (default: 10)"
+ }
+ ],
+ "filter": [
+ {
+ "kind": "text",
+ "text": "Optional JSON filter for metadata (requires GetVectors permission)"
+ }
+ ],
+ "returnDistance": [
+ {
+ "kind": "text",
+ "text": "Whether to include similarity distances"
+ }
+ ],
+ "returnMetadata": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata (requires GetVectors permission)"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1140,
+ "name": "QueryVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1029,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 45,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L45"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1030,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 45,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L45"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1000]
+ },
+ {
+ "title": "Methods",
+ "children": [1043, 1034, 1037, 1031, 1040, 1029]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 21,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L21"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 841,
+ "name": "VectorIndexScope"
+ }
+ ]
+ },
+ {
+ "id": 951,
+ "name": "VectorIndexApi",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "API class for managing Vector Indexes within Vector Buckets\nProvides methods for creating, reading, listing, and deleting vector indexes"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 952,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 37,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L37"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 953,
+ "name": "VectorIndexApi",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 37,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L37"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 954,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 955,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 956,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 37,
+ "character": 36,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L37"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 957,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 37,
+ "character": 38,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L37"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 958,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 959,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 960,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 961,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 962,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 963,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 964,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 965,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 966,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 951,
+ "name": "VectorIndexApi",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 983,
+ "name": "createIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 93,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L93"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 984,
+ "name": "createIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new vector index within a bucket\nDefines the schema for vectors including dimensionality, distance metric, and metadata config"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorConflictException`"
+ },
+ {
+ "kind": "text",
+ "text": " if index already exists (HTTP 409)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorMaxIndexesExceeded`"
+ },
+ {
+ "kind": "text",
+ "text": " if quota exceeded (HTTP 400)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.createIndex({\n vectorBucketName: 'embeddings-prod',\n indexName: 'documents-openai-small',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text', 'internal_id']\n }\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 93,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L93"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 985,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Index configuration"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1046,
+ "name": "CreateIndexOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "indexName": [
+ {
+ "kind": "text",
+ "text": "Unique name for the index within the bucket"
+ }
+ ],
+ "dataType": [
+ {
+ "kind": "text",
+ "text": "Data type for vector components (currently only 'float32')"
+ }
+ ],
+ "dimension": [
+ {
+ "kind": "text",
+ "text": "Dimensionality of vectors (e.g., 384, 768, 1536)"
+ }
+ ],
+ "distanceMetric": [
+ {
+ "kind": "text",
+ "text": "Similarity metric ('cosine', 'euclidean', 'dotproduct')"
+ }
+ ],
+ "metadataConfiguration": [
+ {
+ "kind": "text",
+ "text": "Optional config for non-filterable metadata keys"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 995,
+ "name": "deleteIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 226,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L226"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 996,
+ "name": "deleteIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes a vector index and all its data\nThis operation removes the index schema and all vectors stored in the index"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if index or bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// Delete an index and all its vectors\nconst { error } = await client.deleteIndex('embeddings-prod', 'old-index')\nif (!error) {\n console.log('Index deleted successfully')\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 226,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L226"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 997,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 998,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index to delete"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 986,
+ "name": "getIndex",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 131,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L131"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 987,
+ "name": "getIndex",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves metadata for a specific vector index\nReturns index configuration including dimension, distance metric, and metadata settings"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with index metadata or error"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if index or bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await client.getIndex('embeddings-prod', 'documents-openai-small')\nif (data) {\n console.log('Index dimension:', data.index.dimension)\n console.log('Distance metric:', data.index.distanceMetric)\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 131,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L131"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 988,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 989,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index to retrieve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 990,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 991,
+ "name": "index",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 134,
+ "character": 27,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L134"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1057,
+ "name": "VectorIndex",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [991]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 134,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L134"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 992,
+ "name": "listIndexes",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 188,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L188"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 993,
+ "name": "listIndexes",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists vector indexes within a bucket with optional filtering and pagination\nSupports prefix-based filtering and paginated results"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with list of indexes and pagination token"
+ }
+ ]
+ },
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "With code:\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " if bucket doesn't exist (HTTP 404)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " for server errors (HTTP 500)"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\n// List all indexes in a bucket\nconst { data, error } = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n prefix: 'documents-'\n})\nif (data) {\n console.log('Found indexes:', data.indexes.map(i => i.indexName))\n // Fetch next page if available\n if (data.nextToken) {\n const next = await client.listIndexes({\n vectorBucketName: 'embeddings-prod',\n nextToken: data.nextToken\n })\n }\n}\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 188,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L188"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 994,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Listing options"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1094,
+ "name": "ListIndexesOptions",
+ "package": "@supabase/storage-js",
+ "highlightedProperties": {
+ "vectorBucketName": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ],
+ "prefix": [
+ {
+ "kind": "text",
+ "text": "Filter indexes by name prefix"
+ }
+ ],
+ "maxResults": [
+ {
+ "kind": "text",
+ "text": "Maximum results per page (default: 100)"
+ }
+ ],
+ "nextToken": [
+ {
+ "kind": "text",
+ "text": "Pagination token from previous response"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1099,
+ "name": "ListIndexesResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 981,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 55,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L55"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 982,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorIndexApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.createIndex(options) // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 55,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L55"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [952]
+ },
+ {
+ "title": "Methods",
+ "children": [983, 995, 986, 992, 981]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 31,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L31"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 790,
+ "name": "VectorBucketScope"
+ }
+ ]
+ },
+ {
+ "id": 841,
+ "name": "VectorIndexScope",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scoped client for operations within a specific vector index\nProvides vector data operations (put, get, list, query, delete)"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 842,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 261,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L261"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 843,
+ "name": "VectorIndexScope",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 261,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L261"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 844,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 845,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 846,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 263,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L263"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 847,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 263,
+ "character": 15,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L263"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 848,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 849,
+ "name": "vectorBucketName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 850,
+ "name": "indexName",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 851,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 852,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 853,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 854,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 855,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 856,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 857,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 858,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 841,
+ "name": "VectorIndexScope",
+ "package": "@supabase/storage-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1001,
+ "name": "default.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1000,
+ "name": "default.constructor"
+ }
+ },
+ {
+ "id": 873,
+ "name": "deleteVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 396,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L396"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 874,
+ "name": "deleteVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes vectors by keys from this index\nConvenience method that automatically includes bucket and index names"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3']\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 396,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L396"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 875,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletion options (bucket and index names automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1116,
+ "name": "DeleteVectorsOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ },
+ {
+ "type": "literal",
+ "value": "indexName"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1044,
+ "name": "default.deleteVectors"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1043,
+ "name": "default.deleteVectors"
+ }
+ },
+ {
+ "id": 864,
+ "name": "getVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 318,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L318"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 865,
+ "name": "getVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves vectors by keys from this index\nConvenience method that automatically includes bucket and index names"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of vectors or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.getVectors({\n keys: ['doc-1', 'doc-2'],\n returnMetadata: true\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 318,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L318"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 866,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector retrieval options (bucket and index names automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1108,
+ "name": "GetVectorsOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ },
+ {
+ "type": "literal",
+ "value": "indexName"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1114,
+ "name": "GetVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1035,
+ "name": "default.getVectors"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1034,
+ "name": "default.getVectors"
+ }
+ },
+ {
+ "id": 867,
+ "name": "listVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 342,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L342"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 868,
+ "name": "listVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists vectors in this index with pagination\nConvenience method that automatically includes bucket and index names"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of vectors and pagination token"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.listVectors({\n maxResults: 500,\n returnMetadata: true\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 342,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L342"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 869,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Listing options (bucket and index names automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1120,
+ "name": "ListVectorsOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ },
+ {
+ "type": "literal",
+ "value": "indexName"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1129,
+ "name": "ListVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1038,
+ "name": "default.listVectors"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1037,
+ "name": "default.listVectors"
+ }
+ },
+ {
+ "id": 861,
+ "name": "putVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 294,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L294"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 862,
+ "name": "putVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Inserts or updates vectors in this index\nConvenience method that automatically includes bucket and index names"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with empty response on success or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, ...] },\n metadata: { title: 'Introduction', page: 1 }\n }\n ]\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 294,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L294"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 863,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector insertion options (bucket and index names automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1104,
+ "name": "PutVectorsOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ },
+ {
+ "type": "literal",
+ "value": "indexName"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1032,
+ "name": "default.putVectors"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1031,
+ "name": "default.putVectors"
+ }
+ },
+ {
+ "id": 870,
+ "name": "queryVectors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 371,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L371"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 871,
+ "name": "queryVectors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Queries for similar vectors in this index\nConvenience method that automatically includes bucket and index names"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise with array of similar vectors ordered by distance"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = client.bucket('embeddings-prod').index('documents-openai')\nconst { data } = await index.queryVectors({\n queryVector: { float32: [0.1, 0.2, ...] },\n topK: 5,\n filter: { category: 'technical' },\n returnDistance: true,\n returnMetadata: true\n})\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 371,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L371"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 872,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query options (bucket and index names automatically set)"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1132,
+ "name": "QueryVectorsOptions",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "vectorBucketName"
+ },
+ {
+ "type": "literal",
+ "value": "indexName"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1142,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1140,
+ "name": "QueryVectorsResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "ApiResponse",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1041,
+ "name": "default.queryVectors"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1040,
+ "name": "default.queryVectors"
+ }
+ },
+ {
+ "id": 890,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 45,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L45"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 891,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "This instance for method chaining"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst client = new VectorDataApi(url, headers)\nclient.throwOnError()\nconst { data } = await client.putVectors(options) // throws on error\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorDataApi.ts",
+ "line": 45,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorDataApi.ts#L45"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1030,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1029,
+ "name": "default.throwOnError"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [842]
+ },
+ {
+ "title": "Methods",
+ "children": [873, 864, 867, 861, 870, 890]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 257,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L257"
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 999,
+ "name": "default",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ },
+ {
+ "id": 631,
+ "name": "AnalyticBucket",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Represents an Analytics Bucket using Apache Iceberg table format.\nAnalytics buckets are optimized for analytical queries and data processing."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 635,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ISO 8601 timestamp of bucket creation"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 42,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L42"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 634,
+ "name": "format",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Storage format used (e.g., 'iceberg')"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 40,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L40"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 632,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 36,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L36"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 633,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Bucket type - always 'ANALYTICS' for analytics buckets"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 38,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L38"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ANALYTICS"
+ }
+ },
+ {
+ "id": 636,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ISO 8601 timestamp of last update"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 44,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L44"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [635, 634, 632, 633, 636]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 34,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L34"
+ }
+ ]
+ },
+ {
+ "id": 615,
+ "name": "Bucket",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 621,
+ "name": "allowed_mime_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 16,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L16"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 622,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 17,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L17"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 620,
+ "name": "file_size_limit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 15,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L15"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 616,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 11,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L11"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 618,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 13,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L13"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 619,
+ "name": "owner",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 14,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L14"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 624,
+ "name": "public",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 19,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L19"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 617,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 12,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L12"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 614,
+ "name": "BucketType",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 623,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 18,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L18"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [621, 622, 620, 616, 618, 619, 624, 617, 623]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 10,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L10"
+ }
+ ]
+ },
+ {
+ "id": 1046,
+ "name": "CreateIndexOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for creating a vector index"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1049,
+ "name": "dataType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 21,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L21"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "float32"
+ }
+ },
+ {
+ "id": 1050,
+ "name": "dimension",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 22,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L22"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1051,
+ "name": "distanceMetric",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 23,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L23"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1083,
+ "name": "DistanceMetric",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1048,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 20,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L20"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1052,
+ "name": "metadataConfiguration",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 24,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L24"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1080,
+ "name": "MetadataConfiguration",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1047,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 19,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L19"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1049, 1050, 1051, 1048, 1052, 1047]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts",
+ "line": 18,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/VectorIndexApi.ts#L18"
+ }
+ ]
+ },
+ {
+ "id": 1116,
+ "name": "DeleteVectorsOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for batch deleting vectors"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1118,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 196,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L196"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1119,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of vector keys to delete (1-500 items)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 197,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L197"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1117,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 195,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L195"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1118, 1119, 1117]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 194,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L194"
+ }
+ ]
+ },
+ {
+ "id": 671,
+ "name": "DestinationOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 672,
+ "name": "destinationBucket",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 112,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L112"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [672]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 111,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L111"
+ }
+ ]
+ },
+ {
+ "id": 1077,
+ "name": "EncryptionConfiguration",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Configuration for encryption at rest"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1078,
+ "name": "kmsKeyArn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ARN of the KMS key used for encryption"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 9,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L9"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1079,
+ "name": "sseType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Server-side encryption type (e.g., 'KMS')"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 10,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L10"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1078, 1079]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 8,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L8"
+ }
+ ]
+ },
+ {
+ "id": 1148,
+ "name": "ErrorResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Standard response wrapper for failed operations"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1149,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Null on error"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 291,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L291"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1150,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "StorageVectorsError with details"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 292,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L292"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1153,
+ "name": "StorageVectorsError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1149, 1150]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 290,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L290"
+ }
+ ]
+ },
+ {
+ "id": 1192,
+ "name": "FetchOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for fetch requests"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1193,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom HTTP headers"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 13,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1194,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 13,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L13"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1195,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 14,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L14"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1196,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1197,
+ "name": "noResolveJson",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, return raw Response instead of parsing JSON"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 16,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L16"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1193, 1197]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 12,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L12"
+ }
+ ]
+ },
+ {
+ "id": 701,
+ "name": "FetchParameters",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 702,
+ "name": "signal",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Pass in an AbortController's signal to cancel the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 204,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L204"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "AbortSignal"
+ },
+ "name": "AbortSignal",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [702]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 200,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L200"
+ }
+ ]
+ },
+ {
+ "id": 637,
+ "name": "FileObject",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 639,
+ "name": "bucket_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 49,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L49"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 646,
+ "name": "buckets",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 57,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L57"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 615,
+ "name": "Bucket",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 643,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 53,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L53"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 641,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 51,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L51"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 644,
+ "name": "last_accessed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 55,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L55"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 645,
+ "name": "metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 56,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L56"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 638,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 48,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L48"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 640,
+ "name": "owner",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 50,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L50"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 642,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 52,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L52"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [639, 646, 643, 641, 644, 645, 638, 640, 642]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 47,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L47"
+ }
+ ]
+ },
+ {
+ "id": 647,
+ "name": "FileObjectV2",
"variant": "declaration",
- "kind": 128,
+ "kind": 256,
"flags": {},
"children": [
{
- "id": 633,
- "name": "constructor",
+ "id": 651,
+ "name": "bucket_id",
"variant": "declaration",
- "kind": 512,
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 18,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 64,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L64"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 656,
+ "name": "cache_control",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
{
- "id": 634,
- "name": "StorageApiError",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 18,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L18"
- }
- ],
- "parameters": [
- {
- "id": 635,
- "name": "message",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 636,
- "name": "status",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- },
- {
- "id": 637,
- "name": "statusCode",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 632,
- "name": "StorageApiError",
- "package": "@supabase/storage-js"
- },
- "overwrites": {
- "type": "reference",
- "target": 629,
- "name": "StorageError.constructor"
- }
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 70,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L70"
}
],
- "overwrites": {
- "type": "reference",
- "target": 628,
- "name": "StorageError.constructor"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 638,
- "name": "status",
+ "id": 657,
+ "name": "content_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 71,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L71"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 653,
+ "name": "created_at",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 15,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 66,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L15"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L66"
}
],
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
}
},
{
- "id": 639,
- "name": "statusCode",
+ "id": 658,
+ "name": "etag",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 72,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L72"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 648,
+ "name": "id",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 16,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L61"
}
],
"type": {
@@ -84278,2771 +153818,2348 @@
}
},
{
- "id": 640,
- "name": "toJSON",
+ "id": 654,
+ "name": "last_accessed_at",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 25,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 68,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L68"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 659,
+ "name": "last_modified",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
{
- "id": 641,
- "name": "toJSON",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 25,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L25"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 642,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 644,
- "name": "message",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 28,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L28"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "defaultValue": "..."
- },
- {
- "id": 643,
- "name": "name",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 27,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L27"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "defaultValue": "..."
- },
- {
- "id": 645,
- "name": "status",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 29,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L29"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "number"
- },
- "defaultValue": "..."
- },
- {
- "id": 646,
- "name": "statusCode",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 30,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L30"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "defaultValue": "..."
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [644, 643, 645, 646]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 26,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L26"
- }
- ]
- }
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 73,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L73"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 660,
+ "name": "metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 74,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L74"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
}
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 650,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 63,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L63"
}
- ]
- }
- ],
- "groups": [
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
- "title": "Constructors",
- "children": [633]
+ "id": 655,
+ "name": "size",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 69,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L69"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
},
{
- "title": "Properties",
- "children": [638, 639]
+ "id": 652,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 65,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L65"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "title": "Methods",
- "children": [640]
+ "id": 649,
+ "name": "version",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 62,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "sources": [
+ "groups": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 14,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L14"
+ "title": "Properties",
+ "children": [651, 656, 657, 653, 658, 648, 654, 659, 660, 650, 655, 652, 649]
}
],
- "extendedTypes": [
+ "sources": [
{
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 60,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L60"
}
]
},
{
- "id": 428,
- "name": "StorageClient",
+ "id": 664,
+ "name": "FileOptions",
"variant": "declaration",
- "kind": 128,
+ "kind": 256,
"flags": {},
"children": [
{
- "id": 429,
- "name": "constructor",
+ "id": 665,
+ "name": "cacheControl",
"variant": "declaration",
- "kind": 512,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The number of seconds the asset is cached in the browser and in the Supabase CDN. This is set in the "
+ },
+ {
+ "kind": "code",
+ "text": "`Cache-Control: max-age=`"
+ },
+ {
+ "kind": "text",
+ "text": " header. Defaults to 3600 seconds."
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 10,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 86,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L86"
}
],
- "signatures": [
- {
- "id": 430,
- "name": "StorageClient",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 10,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L10"
- }
- ],
- "parameters": [
- {
- "id": 431,
- "name": "url",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 432,
- "name": "headers",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 433,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 12,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L12"
- }
- ],
- "indexSignatures": [
- {
- "id": 434,
- "name": "__index",
- "variant": "signature",
- "kind": 8192,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 12,
- "character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L12"
- }
- ],
- "parameters": [
- {
- "id": 435,
- "name": "key",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- "defaultValue": "{}"
- },
- {
- "id": 436,
- "name": "fetch",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 437,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- },
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
- }
- ],
- "signatures": [
- {
- "id": 438,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
- },
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- }
- ],
- "parameters": [
- {
- "id": 439,
- "name": "input",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
- },
- "name": "RequestInfo",
- "package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
- ]
- }
- },
- {
- "id": 440,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- },
- {
- "id": 441,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
- },
- "sources": [
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
- }
- ],
- "parameters": [
- {
- "id": 442,
- "name": "input",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
- },
- "name": "Request",
- "package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
- ]
- }
- },
- {
- "id": 443,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
- }
- }
- },
- {
- "id": 444,
- "name": "opts",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": 534,
- "name": "StorageClientOptions",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 428,
- "name": "StorageClient",
- "package": "@supabase/storage-js"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 666,
+ "name": "contentType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "the "
},
- "overwrites": {
- "type": "reference",
- "target": 49,
- "name": "default.constructor"
+ {
+ "kind": "code",
+ "text": "`Content-Type`"
+ },
+ {
+ "kind": "text",
+ "text": " header value. Should be specified if using a "
+ },
+ {
+ "kind": "code",
+ "text": "`fileBody`"
+ },
+ {
+ "kind": "text",
+ "text": " that is neither "
+ },
+ {
+ "kind": "code",
+ "text": "`Blob`"
+ },
+ {
+ "kind": "text",
+ "text": " nor "
+ },
+ {
+ "kind": "code",
+ "text": "`File`"
+ },
+ {
+ "kind": "text",
+ "text": " nor "
+ },
+ {
+ "kind": "code",
+ "text": "`FormData`"
+ },
+ {
+ "kind": "text",
+ "text": ", otherwise will default to "
+ },
+ {
+ "kind": "code",
+ "text": "`text/plain;charset=UTF-8`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 90,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L90"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 668,
+ "name": "duplex",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The duplex option is a string parameter that enables or disables duplex streaming, allowing for both reading and writing data in the same stream. It can be passed as an option to the fetch() method."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 98,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L98"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 670,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optionally add extra headers"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 108,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L108"
}
],
- "overwrites": {
+ "type": {
"type": "reference",
- "target": 48,
- "name": "default.constructor"
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
}
},
{
- "id": 481,
- "name": "createBucket",
+ "id": 669,
+ "name": "metadata",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {
- "isInherited": true
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The metadata option is an object that allows you to store additional information about the file. This information can be used to filter and search for files. The metadata object can contain any key-value pairs you want to store."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 117,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 103,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L103"
}
],
- "signatures": [
- {
- "id": 482,
- "name": "createBucket",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a new Storage bucket"
- }
- ],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "newly created bucket id"
- }
- ]
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 117,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
- }
- ],
- "parameters": [
- {
- "id": 483,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A unique identifier for the bucket you are creating."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 484,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 485,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 488,
- "name": "allowedMimeTypes",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "specifies the allowed mime types that this bucket can accept during upload.\nThe default value is null, which allows files with all mime types to be uploaded.\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "array",
- "elementType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "id": 487,
- "name": "fileSizeLimit",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "specifies the max file size in bytes that can be uploaded to this bucket.\nThe global file size limit takes precedence over this value.\nThe default value is null, which doesn't set a per bucket file size limit."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 121,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "number"
- }
- ]
- }
- },
- {
- "id": 486,
- "name": "public",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations. By default, buckets are private."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 489,
- "name": "type",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(private-beta) specifies the bucket type. see "
- },
- {
- "kind": "code",
- "text": "`BucketType`"
- },
- {
- "kind": "text",
- "text": " for more details.\n - default bucket type is "
- },
- {
- "kind": "code",
- "text": "`STANDARD`"
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
- }
- ],
- "type": {
- "type": "reference",
- "target": 536,
- "name": "BucketType",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [488, 487, 486, 489]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 119,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L119"
- }
- ]
- }
- },
- "defaultValue": "..."
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 490,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 491,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 129,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Pick"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 537,
- "name": "Bucket",
- "package": "@supabase/storage-js"
- },
- {
- "type": "literal",
- "value": "name"
- }
- ],
- "name": "Pick",
- "package": "typescript"
- }
- },
- {
- "id": 492,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 130,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [491, 492]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 128,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 493,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 494,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 495,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 134,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [494, 495]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
- }
- ]
- }
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
},
- "inheritedFrom": {
- "type": "reference",
- "target": 98,
- "name": "default.createBucket"
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 667,
+ "name": "upsert",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When upsert is set to true, the file is overwritten if it exists. When set to false, an error is thrown if the object already exists. Defaults to false."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 94,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L94"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [665, 666, 668, 670, 669, 667]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 82,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L82"
+ }
+ ]
+ },
+ {
+ "id": 1108,
+ "name": "GetVectorsOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for batch reading vectors"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1110,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 162,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L162"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 97,
- "name": "default.createBucket"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 523,
- "name": "deleteBucket",
+ "id": 1111,
+ "name": "keys",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of vector keys to retrieve"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 163,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L163"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1112,
+ "name": "returnData",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {
- "isInherited": true
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include vector data in response"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 260,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L260"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 164,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L164"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1113,
+ "name": "returnMetadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata in response"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 524,
- "name": "deleteBucket",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 165,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L165"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1109,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 161,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L161"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1110, 1111, 1112, 1113, 1109]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 160,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L160"
+ }
+ ]
+ },
+ {
+ "id": 1114,
+ "name": "GetVectorsResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response from getting vectors"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1115,
+ "name": "vectors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of retrieved vector objects"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 173,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L173"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1072,
+ "name": "VectorMatch",
+ "package": "@supabase/storage-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1115]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 172,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L172"
+ }
+ ]
+ },
+ {
+ "id": 625,
+ "name": "ListBucketOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 626,
+ "name": "limit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 23,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L23"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 627,
+ "name": "offset",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 24,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L24"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 630,
+ "name": "search",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 27,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L27"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 628,
+ "name": "sortColumn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 25,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L25"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "id"
},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Deletes an existing bucket. A bucket can't be deleted with existing objects inside it.\nYou must first "
- },
- {
- "kind": "code",
- "text": "`empty()`"
- },
- {
- "kind": "text",
- "text": " the bucket."
- }
- ]
+ {
+ "type": "literal",
+ "value": "name"
},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 260,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L260"
- }
- ],
- "parameters": [
- {
- "id": 525,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The unique identifier of the bucket you would like to delete."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 526,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 527,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 528,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 529,
- "name": "message",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [529]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
- }
- ]
- }
- }
- },
- {
- "id": 530,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [527, 530]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 261,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L261"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 531,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 532,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 533,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 267,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [532, 533]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
- }
- ]
- }
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ {
+ "type": "literal",
+ "value": "created_at"
},
- "inheritedFrom": {
- "type": "reference",
- "target": 140,
- "name": "default.deleteBucket"
+ {
+ "type": "literal",
+ "value": "updated_at"
+ }
+ ]
+ }
+ },
+ {
+ "id": 629,
+ "name": "sortOrder",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 26,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L26"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "asc"
+ },
+ {
+ "type": "literal",
+ "value": "desc"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [626, 627, 630, 628, 629]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 22,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L22"
+ }
+ ]
+ },
+ {
+ "id": 1094,
+ "name": "ListIndexesOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for listing indexes within a bucket"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1097,
+ "name": "maxResults",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Maximum number of results to return (default: 100)"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 138,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L138"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 139,
- "name": "default.deleteBucket"
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 512,
- "name": "emptyBucket",
+ "id": 1098,
+ "name": "nextToken",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {
- "isInherited": true
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for pagination from previous response"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 224,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L224"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 139,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L139"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1096,
+ "name": "prefix",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Filter indexes by name prefix"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 513,
- "name": "emptyBucket",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 137,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L137"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1095,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the parent vector bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 136,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L136"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1097, 1098, 1096, 1095]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 135,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L135"
+ }
+ ]
+ },
+ {
+ "id": 1099,
+ "name": "ListIndexesResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response from listing indexes"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1100,
+ "name": "indexes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of index names"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 148,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1101,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
{
- "kind": "text",
- "text": "Removes all objects inside a single bucket."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 224,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L224"
- }
- ],
- "parameters": [
- {
- "id": 514,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
+ "id": 1102,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "kind": "text",
- "text": "The unique identifier of the bucket you would like to empty."
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 148,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L148"
}
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
+ ],
+ "groups": [
{
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 515,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 516,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 517,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 518,
- "name": "message",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [518]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
- }
- ]
- }
- }
- },
- {
- "id": 519,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [516, 519]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 225,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L225"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 520,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 521,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 522,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 231,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L231"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [521, 522]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
- }
- ]
- }
- }
- ]
+ "title": "Properties",
+ "children": [1102]
}
],
- "name": "Promise",
- "package": "typescript"
- },
- "inheritedFrom": {
- "type": "reference",
- "target": 129,
- "name": "default.emptyBucket"
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 148,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L148"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 1103,
+ "name": "nextToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for fetching next page (if more results exist)"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 149,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L149"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 128,
- "name": "default.emptyBucket"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1100, 1103]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 147,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L147"
+ }
+ ]
+ },
+ {
+ "id": 1085,
+ "name": "ListVectorBucketsOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for fetching vector buckets"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1087,
+ "name": "maxResults",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Maximum number of results to return (default: 100)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 114,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L114"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1088,
+ "name": "nextToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for pagination from previous response"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 115,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L115"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1086,
+ "name": "prefix",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Filter buckets by name prefix"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 113,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L113"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1087, 1088, 1086]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 112,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L112"
+ }
+ ]
+ },
+ {
+ "id": 1089,
+ "name": "ListVectorBucketsResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response from listing vector buckets"
}
- },
+ ]
+ },
+ "children": [
{
- "id": 445,
- "name": "from",
+ "id": 1093,
+ "name": "nextToken",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for fetching next page (if more results exist)"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 24,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 125,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L125"
}
],
- "signatures": [
- {
- "id": 446,
- "name": "from",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Perform file operation in a bucket."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 24,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L24"
- }
- ],
- "parameters": [
- {
- "id": 447,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The bucket id to operate on."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 151,
- "name": "StorageFileApi",
- "package": "@supabase/storage-js",
- "qualifiedName": "default"
- }
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "id": 472,
- "name": "getBucket",
+ "id": 1090,
+ "name": "vectorBuckets",
"variant": "declaration",
- "kind": 2048,
- "flags": {
- "isInherited": true
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of bucket names"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 77,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 124,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
],
- "signatures": [
- {
- "id": 473,
- "name": "getBucket",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1091,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
{
- "kind": "text",
- "text": "Retrieves the details of an existing Storage bucket."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 77,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77"
- }
- ],
- "parameters": [
- {
- "id": 474,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
+ "id": 1092,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "kind": "text",
- "text": "The unique identifier of the bucket you would like to retrieve."
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 124,
+ "character": 19,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L124"
}
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
+ ],
+ "groups": [
{
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 475,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 476,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 79,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
- }
- ],
- "type": {
- "type": "reference",
- "target": 537,
- "name": "Bucket",
- "package": "@supabase/storage-js"
- }
- },
- {
- "id": 477,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [476, 477]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 78,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 478,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 479,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 480,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 84,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [479, 480]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
- }
- ]
- }
- }
- ]
+ "title": "Properties",
+ "children": [1092]
}
],
- "name": "Promise",
- "package": "typescript"
- },
- "inheritedFrom": {
- "type": "reference",
- "target": 89,
- "name": "default.getBucket"
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 124,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L124"
+ }
+ ]
}
}
- ],
- "inheritedFrom": {
- "type": "reference",
- "target": 88,
- "name": "default.getBucket"
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 464,
- "name": "listBuckets",
+ "title": "Properties",
+ "children": [1093, 1090]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 123,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L123"
+ }
+ ]
+ },
+ {
+ "id": 1120,
+ "name": "ListVectorsOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for listing/scanning vectors in an index\nSupports parallel scanning via segment configuration"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1122,
+ "name": "indexName",
"variant": "declaration",
- "kind": 2048,
- "flags": {
- "isInherited": true
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 214,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L214"
}
],
- "signatures": [
- {
- "id": 465,
- "name": "listBuckets",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Retrieves the details of all Storage buckets within an existing project."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 47,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 466,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 467,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 49,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
- }
- ],
- "type": {
- "type": "array",
- "elementType": {
- "type": "reference",
- "target": 537,
- "name": "Bucket",
- "package": "@supabase/storage-js"
- }
- }
- },
- {
- "id": 468,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 50,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [467, 468]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 48,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 469,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 470,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 53,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 471,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 54,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [470, 471]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 52,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
- }
- ]
- }
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- },
- "inheritedFrom": {
- "type": "reference",
- "target": 81,
- "name": "default.listBuckets"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1123,
+ "name": "maxResults",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Maximum number of results to return (default: 500, max: 1000)"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 215,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L215"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 80,
- "name": "default.listBuckets"
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 462,
- "name": "throwOnError",
+ "id": 1124,
+ "name": "nextToken",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {
- "isPublic": true,
- "isInherited": true
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for pagination from previous response"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
- "character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 216,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L216"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1125,
+ "name": "returnData",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include vector data in response"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 463,
- "name": "throwOnError",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enable throwing errors instead of returning them."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 39,
- "character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "this"
- },
- "inheritedFrom": {
- "type": "reference",
- "target": 79,
- "name": "default.throwOnError"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 217,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L217"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1126,
+ "name": "returnMetadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata in response"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 218,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L218"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 78,
- "name": "default.throwOnError"
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
}
},
{
- "id": 496,
- "name": "updateBucket",
+ "id": 1127,
+ "name": "segmentCount",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {
- "isInherited": true
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Total number of parallel segments (1-16)"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 176,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L176"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 219,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L219"
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1128,
+ "name": "segmentIndex",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Zero-based index of this segment (0 to segmentCount-1)"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 497,
- "name": "updateBucket",
- "variant": "signature",
- "kind": 4096,
- "flags": {
- "isInherited": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates a Storage bucket"
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 176,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L176"
- }
- ],
- "parameters": [
- {
- "id": 498,
- "name": "id",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A unique identifier for the bucket you are updating."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 499,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 500,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 503,
- "name": "allowedMimeTypes",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "specifies the allowed mime types that this bucket can accept during upload.\nThe default value is null, which allows files with all mime types to be uploaded.\nEach mime type specified can be a wildcard, e.g. image/*, or a specific mime type, e.g. image/png."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "array",
- "elementType": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ]
- }
- },
- {
- "id": 502,
- "name": "fileSizeLimit",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "specifies the max file size in bytes that can be uploaded to this bucket.\nThe global file size limit takes precedence over this value.\nThe default value is null, which doesn't set a per bucket file size limit."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 180,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "number"
- }
- ]
- }
- },
- {
- "id": 501,
- "name": "public",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The visibility of the bucket. Public buckets don't require an authorization token to download objects, but still require a valid token for all other operations."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [503, 502, 501]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 178,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
- }
- ]
- }
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 504,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 505,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 506,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 507,
- "name": "message",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [507]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
- }
- ]
- }
- }
- },
- {
- "id": 508,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 186,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L186"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [505, 508]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 509,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 510,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
- }
- },
- {
- "id": 511,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 190,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190"
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [510, 511]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
- }
- ]
- }
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- },
- "inheritedFrom": {
- "type": "reference",
- "target": 113,
- "name": "default.updateBucket"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 220,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L220"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1121,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 213,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L213"
}
],
- "inheritedFrom": {
- "type": "reference",
- "target": 112,
- "name": "default.updateBucket"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
}
],
"groups": [
{
- "title": "Constructors",
- "children": [429]
+ "title": "Properties",
+ "children": [1122, 1123, 1124, 1125, 1126, 1127, 1128, 1121]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 212,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L212"
+ }
+ ]
+ },
+ {
+ "id": 1129,
+ "name": "ListVectorsResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response from listing vectors"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1131,
+ "name": "nextToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token for fetching next page (if more results exist)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 230,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L230"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "title": "Methods",
- "children": [481, 523, 512, 445, 472, 464, 462, 496]
+ "id": 1130,
+ "name": "vectors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of vector objects"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 229,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L229"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1072,
+ "name": "VectorMatch",
+ "package": "@supabase/storage-js"
+ }
+ }
}
],
- "sources": [
+ "groups": [
{
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 9,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L9"
+ "title": "Properties",
+ "children": [1131, 1130]
}
],
- "extendedTypes": [
+ "sources": [
{
- "type": "reference",
- "target": 47,
- "name": "default",
- "package": "@supabase/storage-js"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 228,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L228"
}
]
},
{
- "id": 627,
- "name": "StorageError",
+ "id": 703,
+ "name": "Metadata",
"variant": "declaration",
- "kind": 128,
+ "kind": 256,
"flags": {},
"children": [
{
- "id": 628,
- "name": "constructor",
+ "id": 704,
+ "name": "name",
"variant": "declaration",
- "kind": 512,
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 4,
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 209,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L209"
}
],
- "signatures": [
- {
- "id": 629,
- "name": "StorageError",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 4,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L4"
- }
- ],
- "parameters": [
- {
- "id": 630,
- "name": "message",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
- },
- "overwrites": {
- "type": "reference",
- "target": -1,
- "name": "Error.constructor"
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [704]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 208,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L208"
+ }
+ ]
+ },
+ {
+ "id": 1080,
+ "name": "MetadataConfiguration",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Metadata configuration for vector index\nDefines which metadata keys should not be indexed for filtering"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1081,
+ "name": "nonFilterableMetadataKeys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of metadata keys that cannot be used in filters"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 31,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L31"
}
],
- "overwrites": {
- "type": "reference",
- "target": -1,
- "name": "Error.constructor"
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
}
],
"groups": [
{
- "title": "Constructors",
- "children": [628]
+ "title": "Properties",
+ "children": [1081]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 1,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L1"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 30,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L30"
}
- ],
- "extendedTypes": [
+ ]
+ },
+ {
+ "id": 1104,
+ "name": "PutVectorsOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for batch inserting/updating vectors"
+ }
+ ]
+ },
+ "children": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Error"
+ "id": 1106,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ]
},
- "name": "Error",
- "package": "typescript"
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 184,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L184"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1105,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 183,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L183"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1107,
+ "name": "vectors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of vectors to insert/upsert (1-500 items)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 185,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L185"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1068,
+ "name": "VectorObject",
+ "package": "@supabase/storage-js"
+ }
+ }
}
],
- "extendedBy": [
+ "groups": [
{
- "type": "reference",
- "target": 632,
- "name": "StorageApiError"
- },
+ "title": "Properties",
+ "children": [1106, 1105, 1107]
+ }
+ ],
+ "sources": [
{
- "type": "reference",
- "target": 648,
- "name": "StorageUnknownError"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 182,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L182"
}
]
},
{
- "id": 648,
- "name": "StorageUnknownError",
+ "id": 1132,
+ "name": "QueryVectorsOptions",
"variant": "declaration",
- "kind": 128,
+ "kind": 256,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options for querying similar vectors (ANN search)"
+ }
+ ]
+ },
"children": [
{
- "id": 649,
- "name": "constructor",
+ "id": 1137,
+ "name": "filter",
"variant": "declaration",
- "kind": 512,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional JSON filter for metadata"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 38,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 254,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L254"
}
],
- "signatures": [
+ "type": {
+ "type": "reference",
+ "target": 1084,
+ "name": "VectorFilter",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1134,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the index"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 650,
- "name": "StorageUnknownError",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 38,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L38"
- }
- ],
- "parameters": [
- {
- "id": 651,
- "name": "message",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 652,
- "name": "originalError",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 648,
- "name": "StorageUnknownError",
- "package": "@supabase/storage-js"
- },
- "overwrites": {
- "type": "reference",
- "target": 629,
- "name": "StorageError.constructor"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 251,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L251"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1135,
+ "name": "queryVector",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Query vector to find similar vectors"
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 252,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L252"
}
],
- "overwrites": {
+ "type": {
"type": "reference",
- "target": 628,
- "name": "StorageError.constructor"
+ "target": 1065,
+ "name": "VectorData",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1138,
+ "name": "returnDistance",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include distance scores"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 255,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L255"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1139,
+ "name": "returnMetadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to include metadata in results"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 256,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L256"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1136,
+ "name": "topK",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of nearest neighbors to return (default: 10)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 253,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L253"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1133,
+ "name": "vectorBucketName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the vector bucket"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 250,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L250"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1137, 1134, 1135, 1138, 1139, 1136, 1133]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 249,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L249"
+ }
+ ]
+ },
+ {
+ "id": 1140,
+ "name": "QueryVectorsResponse",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response from vector similarity query"
}
- },
+ ]
+ },
+ "children": [
{
- "id": 653,
- "name": "originalError",
+ "id": 1141,
+ "name": "matches",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of similar vectors ordered by distance"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 36,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 264,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L264"
}
],
"type": {
- "type": "intrinsic",
- "name": "unknown"
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1072,
+ "name": "VectorMatch",
+ "package": "@supabase/storage-js"
+ }
}
}
],
"groups": [
- {
- "title": "Constructors",
- "children": [649]
- },
{
"title": "Properties",
- "children": [653]
+ "children": [1141]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 35,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L35"
- }
- ],
- "extendedTypes": [
- {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 263,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L263"
}
]
},
{
- "id": 537,
- "name": "Bucket",
+ "id": 673,
+ "name": "SearchOptions",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 543,
- "name": "allowed_mime_types",
+ "id": 674,
+ "name": "limit",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The number of files you want to be returned."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\n100\n```"
+ }
+ ]
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 11,
+ "line": 120,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L11"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L120"
}
],
"type": {
- "type": "array",
- "elementType": {
- "type": "intrinsic",
- "name": "string"
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 675,
+ "name": "offset",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The starting position."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 125,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L125"
}
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 544,
- "name": "created_at",
+ "id": 677,
+ "name": "search",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The search string to filter files by."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 12,
+ "line": 135,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L135"
}
],
"type": {
@@ -87051,28 +156168,80 @@
}
},
{
- "id": 542,
- "name": "file_size_limit",
+ "id": 676,
+ "name": "sortBy",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The column to sort by. Can be any column inside a FileObject."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 10,
+ "line": 130,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L130"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 661,
+ "name": "SortBy",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [674, 675, 677, 676]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 115,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L115"
+ }
+ ]
+ },
+ {
+ "id": 687,
+ "name": "SearchV2Object",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 692,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 183,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L183"
}
],
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
}
},
{
- "id": 538,
+ "id": 688,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -87080,9 +156249,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 6,
+ "line": 179,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L179"
}
],
"type": {
@@ -87091,17 +156260,17 @@
}
},
{
- "id": 540,
- "name": "name",
+ "id": 689,
+ "name": "key",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 8,
+ "line": 180,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L180"
}
],
"type": {
@@ -87110,17 +156279,26 @@
}
},
{
- "id": 541,
- "name": "owner",
+ "id": 694,
+ "name": "last_accessed_at",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 9,
+ "line": 188,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L188"
}
],
"type": {
@@ -87129,49 +156307,60 @@
}
},
{
- "id": 546,
- "name": "public",
+ "id": 693,
+ "name": "metadata",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 14,
+ "line": 184,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L184"
}
],
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
}
},
{
- "id": 539,
- "name": "type",
+ "id": 690,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 7,
+ "line": 181,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L7"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L181"
}
],
"type": {
- "type": "reference",
- "target": 536,
- "name": "BucketType",
- "package": "@supabase/storage-js"
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 545,
+ "id": 691,
"name": "updated_at",
"variant": "declaration",
"kind": 1024,
@@ -87179,9 +156368,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 13,
+ "line": 182,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L13"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L182"
}
],
"type": {
@@ -87193,72 +156382,126 @@
"groups": [
{
"title": "Properties",
- "children": [543, 544, 542, 538, 540, 541, 546, 539, 545]
+ "children": [692, 688, 689, 694, 693, 690, 691]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 5,
+ "line": 178,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L178"
}
]
},
{
- "id": 581,
- "name": "DestinationOptions",
+ "id": 681,
+ "name": "SearchV2Options",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 582,
- "name": "destinationBucket",
+ "id": 684,
+ "name": "cursor",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The cursor used for pagination. Pass the value received from nextCursor of the previous request."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 80,
+ "line": 158,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L158"
}
],
"type": {
"type": "intrinsic",
"name": "string"
}
- }
- ],
- "groups": [
+ },
{
- "title": "Properties",
- "children": [582]
- }
- ],
- "sources": [
+ "id": 682,
+ "name": "limit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The number of files you want to be returned."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\n1000\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 148,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L148"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 79,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L79"
- }
- ]
- },
- {
- "id": 604,
- "name": "FetchParameters",
- "variant": "declaration",
- "kind": 256,
- "flags": {},
- "children": [
+ "id": 683,
+ "name": "prefix",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The prefix search string to filter files by."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 153,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L153"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
{
- "id": 605,
- "name": "signal",
+ "id": 686,
+ "name": "sortBy",
"variant": "declaration",
"kind": 1024,
"flags": {
@@ -87268,63 +156511,172 @@
"summary": [
{
"kind": "text",
- "text": "Pass in an AbortController's signal to cancel the request."
+ "text": "The column and order to sort by"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\n'name asc'\n```"
+ }
+ ]
}
]
},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 157,
+ "line": 175,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L157"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L175"
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "AbortSignal"
- },
- "name": "AbortSignal",
- "package": "typescript"
+ "target": 678,
+ "name": "SortByV2",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 685,
+ "name": "with_delimiter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to emulate a hierarchical listing of objects using delimiters.\n\n- When "
+ },
+ {
+ "kind": "code",
+ "text": "`false`"
+ },
+ {
+ "kind": "text",
+ "text": " (default), all objects are listed as flat key/value pairs.\n- When "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ", the response groups objects by delimiter, making it appear\n like a file/folder hierarchy."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@default",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```ts\nfalse\n```"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 169,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L169"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [605]
+ "children": [684, 682, 683, 686, 685]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 153,
+ "line": 143,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L153"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L143"
}
]
},
{
- "id": 547,
- "name": "FileObject",
+ "id": 696,
+ "name": "SearchV2Result",
"variant": "declaration",
"kind": 256,
"flags": {},
"children": [
{
- "id": 549,
- "name": "bucket_id",
+ "id": 698,
+ "name": "folders",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 19,
+ "line": 195,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L195"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 695,
+ "name": "SearchV2Folder",
+ "package": "@supabase/storage-js"
+ }
+ }
+ },
+ {
+ "id": 697,
+ "name": "hasNext",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 194,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L194"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 700,
+ "name": "nextCursor",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 197,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L19"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L197"
}
],
"type": {
@@ -87333,38 +156685,66 @@
}
},
{
- "id": 556,
- "name": "buckets",
+ "id": 699,
+ "name": "objects",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 26,
+ "line": 196,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L26"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L196"
}
],
"type": {
- "type": "reference",
- "target": 537,
- "name": "Bucket",
- "package": "@supabase/storage-js"
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 687,
+ "name": "SearchV2Object",
+ "package": "@supabase/storage-js"
+ }
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 553,
- "name": "created_at",
+ "title": "Properties",
+ "children": [698, 697, 700, 699]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 193,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L193"
+ }
+ ]
+ },
+ {
+ "id": 661,
+ "name": "SortBy",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 662,
+ "name": "column",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 23,
+ "line": 78,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L23"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L78"
}
],
"type": {
@@ -87373,457 +156753,1057 @@
}
},
{
- "id": 551,
- "name": "id",
+ "id": 663,
+ "name": "order",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 21,
+ "line": 79,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L21"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L79"
}
],
"type": {
"type": "intrinsic",
"name": "string"
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 554,
- "name": "last_accessed_at",
+ "title": "Properties",
+ "children": [662, 663]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 77,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L77"
+ }
+ ]
+ },
+ {
+ "id": 678,
+ "name": "SortByV2",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 679,
+ "name": "column",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 24,
+ "line": 139,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L24"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L139"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "name"
+ },
+ {
+ "type": "literal",
+ "value": "created_at"
+ },
+ {
+ "type": "literal",
+ "value": "updated_at"
+ }
+ ]
}
},
{
- "id": 555,
- "name": "metadata",
+ "id": 680,
+ "name": "order",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 25,
+ "line": 140,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L25"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L140"
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
+ "type": "union",
+ "types": [
{
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "asc"
},
{
- "type": "intrinsic",
- "name": "any"
+ "type": "literal",
+ "value": "desc"
}
- ],
- "name": "Record",
- "package": "typescript"
+ ]
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 548,
- "name": "name",
+ "title": "Properties",
+ "children": [679, 680]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 138,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L138"
+ }
+ ]
+ },
+ {
+ "id": 611,
+ "name": "StorageClientOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 612,
+ "name": "useNewHostname",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 18,
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 8,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L18"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L8"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "boolean"
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 550,
- "name": "owner",
+ "title": "Properties",
+ "children": [612]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/StorageClient.ts",
+ "line": 7,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/StorageClient.ts#L7"
+ }
+ ]
+ },
+ {
+ "id": 892,
+ "name": "StorageVectorsClientOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Configuration options for the Storage Vectors client"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 897,
+ "name": "fetch",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom fetch implementation (optional)\nUseful for testing or custom request handling"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 20,
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 26,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L20"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L26"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reflection",
+ "declaration": {
+ "id": 898,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 899,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 900,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 901,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 902,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 903,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 904,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
}
},
{
- "id": 552,
- "name": "updated_at",
+ "id": 893,
+ "name": "headers",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom headers to include in all requests"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 22,
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L22"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L21"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reflection",
+ "declaration": {
+ "id": 894,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 21,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L21"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 895,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
+ "line": 21,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L21"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 896,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
}
}
],
"groups": [
{
"title": "Properties",
- "children": [549, 556, 553, 551, 554, 555, 548, 550, 552]
+ "children": [897, 893]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "fileName": "packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts",
"line": 17,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L17"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/StorageVectorsClient.ts#L17"
}
]
},
{
- "id": 557,
- "name": "FileObjectV2",
+ "id": 1144,
+ "name": "SuccessResponse",
"variant": "declaration",
"kind": 256,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Standard response wrapper for successful operations"
+ }
+ ]
+ },
"children": [
{
- "id": 561,
- "name": "bucket_id",
+ "id": 1145,
+ "name": "data",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response data of type T"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 33,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 281,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L33"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L281"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 1147,
+ "name": "T",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "SuccessResponse.T",
+ "refersToTypeParameter": true
}
},
{
- "id": 566,
- "name": "cache_control",
+ "id": 1146,
+ "name": "error",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Null on success"
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 38,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 282,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L38"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L282"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": null
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 567,
- "name": "content_type",
+ "title": "Properties",
+ "children": [1145, 1146]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 280,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L280"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1147,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ]
+ },
+ {
+ "id": 705,
+ "name": "TransformOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 710,
+ "name": "format",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Specify the format of the image requested.\n\nWhen using 'origin' we force the format to be the same as the original image.\nWhen this option is not passed in, images are optimized to modern image formats like Webp."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 39,
+ "line": 240,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L240"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "origin"
}
},
{
- "id": 563,
- "name": "created_at",
+ "id": 707,
+ "name": "height",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The height of the image in pixels."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 35,
+ "line": 220,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L35"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L220"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
},
{
- "id": 568,
- "name": "etag",
+ "id": 709,
+ "name": "quality",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Set the quality of the returned image.\nA number from 20 to 100, with 100 being the highest quality.\nDefaults to 80"
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 40,
+ "line": 233,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L40"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L233"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
},
{
- "id": 558,
- "name": "id",
+ "id": 708,
+ "name": "resize",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The resize mode can be cover, contain or fill. Defaults to cover.\nCover resizes the image to maintain it's aspect ratio while filling the entire width and height.\nContain resizes the image to maintain it's aspect ratio while fitting the entire image within the width and height.\nFill resizes the image to fill the entire width and height. If the object's aspect ratio does not match the width and height, the image will be stretched to fit."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 30,
+ "line": 227,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L30"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L227"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "cover"
+ },
+ {
+ "type": "literal",
+ "value": "contain"
+ },
+ {
+ "type": "literal",
+ "value": "fill"
+ }
+ ]
}
},
{
- "id": 564,
- "name": "last_accessed_at",
+ "id": 706,
+ "name": "width",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The width of the image in pixels."
+ }
+ ]
+ },
"sources": [
{
"fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 36,
+ "line": 216,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L36"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L216"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 569,
- "name": "last_modified",
+ "title": "Properties",
+ "children": [710, 707, 709, 708, 706]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 212,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L212"
+ }
+ ]
+ },
+ {
+ "id": 1053,
+ "name": "VectorBucket",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector bucket metadata"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1055,
+ "name": "creationTime",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unix timestamp of when the bucket was created"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 41,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 21,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L41"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L21"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
},
{
- "id": 570,
- "name": "metadata",
+ "id": 1056,
+ "name": "encryptionConfiguration",
"variant": "declaration",
"kind": 1024,
"flags": {
"isOptional": true
},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional encryption settings"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 42,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 22,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L42"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L22"
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "any"
- }
- ],
- "name": "Record",
- "package": "typescript"
+ "target": 1077,
+ "name": "EncryptionConfiguration",
+ "package": "@supabase/storage-js"
}
},
{
- "id": 560,
- "name": "name",
+ "id": 1054,
+ "name": "vectorBucketName",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique name of the vector bucket"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 32,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 20,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L32"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L20"
}
],
"type": {
"type": "intrinsic",
"name": "string"
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 565,
- "name": "size",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 37,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L37"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "number"
+ "title": "Properties",
+ "children": [1055, 1056, 1054]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 19,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L19"
+ }
+ ]
+ },
+ {
+ "id": 1065,
+ "name": "VectorData",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector data representation\nVectors must be float32 arrays with dimensions matching the index"
}
- },
+ ]
+ },
+ "children": [
{
- "id": 562,
- "name": "updated_at",
+ "id": 1066,
+ "name": "float32",
"variant": "declaration",
"kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of 32-bit floating point numbers"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 34,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 71,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L34"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L71"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "number"
+ }
}
- },
+ }
+ ],
+ "groups": [
{
- "id": 559,
- "name": "version",
+ "title": "Properties",
+ "children": [1066]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 70,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L70"
+ }
+ ]
+ },
+ {
+ "id": 1151,
+ "name": "VectorFetchParameters",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Fetch-specific parameters like abort signals"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1152,
+ "name": "signal",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "AbortSignal for cancelling requests"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 31,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 272,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L31"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L272"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "AbortSignal"
+ },
+ "name": "AbortSignal",
+ "package": "typescript"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [561, 566, 567, 563, 568, 558, 564, 569, 570, 560, 565, 562, 559]
+ "children": [1152]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 29,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 271,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L29"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L271"
}
]
},
{
- "id": 574,
- "name": "FileOptions",
+ "id": 1057,
+ "name": "VectorIndex",
"variant": "declaration",
"kind": 256,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector index configuration and metadata"
+ }
+ ]
+ },
"children": [
{
- "id": 575,
- "name": "cacheControl",
+ "id": 1064,
+ "name": "creationTime",
"variant": "declaration",
"kind": 1024,
"flags": {
@@ -87833,184 +157813,136 @@
"summary": [
{
"kind": "text",
- "text": "The number of seconds the asset is cached in the browser and in the Supabase CDN. This is set in the "
- },
- {
- "kind": "code",
- "text": "`Cache-Control: max-age=`"
- },
- {
- "kind": "text",
- "text": " header. Defaults to 3600 seconds."
+ "text": "Unix timestamp of when the index was created"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 54,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 62,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L62"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
},
{
- "id": 576,
- "name": "contentType",
+ "id": 1060,
+ "name": "dataType",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "the "
- },
- {
- "kind": "code",
- "text": "`Content-Type`"
- },
- {
- "kind": "text",
- "text": " header value. Should be specified if using a "
- },
- {
- "kind": "code",
- "text": "`fileBody`"
- },
- {
- "kind": "text",
- "text": " that is neither "
- },
- {
- "kind": "code",
- "text": "`Blob`"
- },
- {
- "kind": "text",
- "text": " nor "
- },
- {
- "kind": "code",
- "text": "`File`"
- },
- {
- "kind": "text",
- "text": " nor "
- },
- {
- "kind": "code",
- "text": "`FormData`"
- },
- {
- "kind": "text",
- "text": ", otherwise will default to "
- },
- {
- "kind": "code",
- "text": "`text/plain;charset=UTF-8`"
- },
- {
- "kind": "text",
- "text": "."
+ "text": "Data type of vector components (currently only 'float32')"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 58,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L58"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L58"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "literal",
+ "value": "float32"
}
},
{
- "id": 578,
- "name": "duplex",
+ "id": 1061,
+ "name": "dimension",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The duplex option is a string parameter that enables or disables duplex streaming, allowing for both reading and writing data in the same stream. It can be passed as an option to the fetch() method."
+ "text": "Dimensionality of vectors (e.g., 384, 768, 1536)"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 66,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 59,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L66"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L59"
}
],
"type": {
"type": "intrinsic",
- "name": "string"
+ "name": "number"
}
},
{
- "id": 580,
- "name": "headers",
+ "id": 1062,
+ "name": "distanceMetric",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "Optionally add extra headers"
+ "text": "Similarity metric used for queries"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 76,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 60,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L76"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L60"
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
+ "target": 1083,
+ "name": "DistanceMetric",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1058,
+ "name": "indexName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
{
- "type": "intrinsic",
- "name": "string"
+ "kind": "text",
+ "text": "Unique name of the index within the bucket"
}
- ],
- "name": "Record",
- "package": "typescript"
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 56,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L56"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 579,
- "name": "metadata",
+ "id": 1063,
+ "name": "metadataConfiguration",
"variant": "declaration",
"kind": 1024,
"flags": {
@@ -88020,204 +157952,291 @@
"summary": [
{
"kind": "text",
- "text": "The metadata option is an object that allows you to store additional information about the file. This information can be used to filter and search for files. The metadata object can contain any key-value pairs you want to store."
+ "text": "Configuration for metadata filtering"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 71,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 61,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L71"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L61"
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "any"
- }
- ],
- "name": "Record",
- "package": "typescript"
+ "target": 1080,
+ "name": "MetadataConfiguration",
+ "package": "@supabase/storage-js"
}
},
{
- "id": 577,
- "name": "upsert",
+ "id": 1059,
+ "name": "vectorBucketName",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "When upsert is set to true, the file is overwritten if it exists. When set to false, an error is thrown if the object already exists. Defaults to false."
+ "text": "Name of the parent vector bucket"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 62,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 57,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L62"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L57"
}
],
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "string"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [575, 576, 578, 580, 579, 577]
+ "children": [1064, 1060, 1061, 1062, 1058, 1063, 1059]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 50,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 55,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L55"
}
]
},
{
- "id": 606,
- "name": "Metadata",
+ "id": 1072,
+ "name": "VectorMatch",
"variant": "declaration",
"kind": 256,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector object returned from queries with optional distance"
+ }
+ ]
+ },
"children": [
{
- "id": 607,
- "name": "name",
+ "id": 1074,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector embedding data (if requested)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 101,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L101"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1065,
+ "name": "VectorData",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 1076,
+ "name": "distance",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Similarity distance from query vector (if requested)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 103,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L103"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1073,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the vector"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 100,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L100"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1075,
+ "name": "metadata",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Arbitrary metadata (if requested)"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 162,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 102,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L102"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 1067,
+ "name": "VectorMetadata",
+ "package": "@supabase/storage-js"
}
}
],
"groups": [
{
"title": "Properties",
- "children": [607]
+ "children": [1074, 1076, 1073, 1075]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 161,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 99,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L161"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L99"
}
]
},
{
- "id": 583,
- "name": "SearchOptions",
+ "id": 1068,
+ "name": "VectorObject",
"variant": "declaration",
"kind": 256,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Single vector object for insertion/update"
+ }
+ ]
+ },
"children": [
{
- "id": 584,
- "name": "limit",
+ "id": 1070,
+ "name": "data",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The number of files you want to be returned."
- }
- ],
- "blockTags": [
- {
- "tag": "@default",
- "content": [
- {
- "kind": "code",
- "text": "```ts\n100\n```"
- }
- ]
+ "text": "Vector embedding data"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
"line": 88,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L88"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L88"
}
],
"type": {
- "type": "intrinsic",
- "name": "number"
+ "type": "reference",
+ "target": 1065,
+ "name": "VectorData",
+ "package": "@supabase/storage-js"
}
},
{
- "id": 585,
- "name": "offset",
+ "id": 1069,
+ "name": "key",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The starting position."
+ "text": "Unique identifier for the vector"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 93,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 87,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L93"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L87"
}
],
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
}
},
{
- "id": 587,
- "name": "search",
+ "id": 1071,
+ "name": "metadata",
"variant": "declaration",
"kind": 1024,
"flags": {
@@ -88227,128 +158246,709 @@
"summary": [
{
"kind": "text",
- "text": "The search string to filter files by."
+ "text": "Optional arbitrary metadata"
}
]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 103,
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 89,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L103"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L89"
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": 1067,
+ "name": "VectorMetadata",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1070, 1069, 1071]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 86,
+ "character": 17,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L86"
+ }
+ ]
+ },
+ {
+ "id": 1142,
+ "name": "ApiResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Union type for all API responses\nFollows the pattern: { data: T, error: null } | { data: null, error: Error }"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 299,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L299"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1143,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1144,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1143,
+ "name": "T",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SuccessResponse",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "reference",
+ "target": 1148,
+ "name": "ErrorResponse",
+ "package": "@supabase/storage-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 614,
+ "name": "BucketType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of storage bucket\n- STANDARD: Regular file storage buckets\n- ANALYTICS: Iceberg table-based buckets for analytical workloads"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 8,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L8"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "STANDARD"
+ },
+ {
+ "type": "literal",
+ "value": "ANALYTICS"
+ }
+ ]
+ }
+ },
+ {
+ "id": 711,
+ "name": "Camelize",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 247,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L247"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 712,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 712,
+ "name": "T",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 712,
+ "name": "T",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "nameType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "CamelCase"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Extract"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Extract",
+ "package": "typescript"
+ }
+ ],
+ "name": "CamelCase",
+ "package": "@supabase/storage-js"
+ }
+ }
+ },
+ {
+ "id": 1083,
+ "name": "DistanceMetric",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Distance metrics for vector similarity search"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 43,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L43"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "cosine"
+ },
+ {
+ "type": "literal",
+ "value": "euclidean"
+ },
+ {
+ "type": "literal",
+ "value": "dotproduct"
+ }
+ ]
+ }
+ },
+ {
+ "id": 713,
+ "name": "DownloadResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 251,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L251"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 720,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 714,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 715,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 253,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L253"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 720,
+ "name": "T",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 716,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 254,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L254"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [715, 716]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 252,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L252"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 717,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 718,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 257,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L257"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 719,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 258,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L258"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [718, 719]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 256,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L256"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1191,
+ "name": "Fetch",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 5,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L5"
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 56,
+ "name": "fetch",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1198,
+ "name": "RequestMethodType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP methods supported by the API"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/fetch.ts",
+ "line": 22,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/fetch.ts#L22"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "GET"
+ },
+ {
+ "type": "literal",
+ "value": "POST"
+ },
+ {
+ "type": "literal",
+ "value": "PUT"
+ },
+ {
+ "type": "literal",
+ "value": "DELETE"
}
+ ]
+ }
+ },
+ {
+ "id": 695,
+ "name": "SearchV2Folder",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/types.ts",
+ "line": 191,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/types.ts#L191"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
},
- {
- "id": 586,
- "name": "sortBy",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 687,
+ "name": "SearchV2Object",
+ "package": "@supabase/storage-js"
},
- "comment": {
- "summary": [
+ {
+ "type": "union",
+ "types": [
{
- "kind": "text",
- "text": "The column to sort by. Can be any column inside a FileObject."
+ "type": "literal",
+ "value": "id"
+ },
+ {
+ "type": "literal",
+ "value": "metadata"
+ },
+ {
+ "type": "literal",
+ "value": "last_accessed_at"
}
]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 98,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L98"
- }
- ],
- "type": {
- "type": "reference",
- "target": 571,
- "name": "SortBy",
- "package": "@supabase/storage-js"
}
- }
- ],
- "groups": [
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1082,
+ "name": "VectorDataType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supported data types for vectors\nCurrently only float32 is supported"
+ }
+ ]
+ },
+ "sources": [
{
- "title": "Properties",
- "children": [584, 585, 587, 586]
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 38,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L38"
}
],
+ "type": {
+ "type": "literal",
+ "value": "float32"
+ }
+ },
+ {
+ "id": 1084,
+ "name": "VectorFilter",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "JSON filter expression for metadata filtering\nFormat and syntax depend on the S3 Vectors service implementation"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 83,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L83"
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 237,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L237"
}
- ]
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
},
{
- "id": 591,
- "name": "SearchV2Options",
+ "id": 1067,
+ "name": "VectorMetadata",
"variant": "declaration",
- "kind": 256,
+ "kind": 2097152,
"flags": {},
- "children": [
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Arbitrary JSON metadata attached to vectors\nKeys configured as non-filterable in the index can be stored but not queried"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 594,
- "name": "cursor",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "fileName": "packages/core/storage-js/src/lib/vectors/types.ts",
+ "line": 78,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/types.ts#L78"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
},
- "comment": {
- "summary": [
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1222,
+ "name": "isPlainObject",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Determine if input is a plain object\nAn object is plain if it's created by either {}, new Object(), or Object.create(null)"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@source",
+ "content": [
{
"kind": "text",
- "text": "The cursor used for pagination. Pass the value received from nextCursor of the previous request."
+ "text": "https://github.com/sindresorhus/is-plain-obj"
}
]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 126,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L126"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
}
- },
+ ]
+ },
+ "sources": [
{
- "id": 592,
- "name": "limit",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 49,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L49"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1223,
+ "name": "isPlainObject",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
"comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The number of files you want to be returned."
- }
- ],
+ "summary": [],
"blockTags": [
{
- "tag": "@default",
+ "tag": "@returns",
"content": [
{
- "kind": "code",
- "text": "```ts\n1000\n```"
+ "kind": "text",
+ "text": "True if value is a plain object"
}
]
}
@@ -88356,68 +158956,131 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 116,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L116"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 49,
+ "character": 29,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L49"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1224,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Value to check"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
}
],
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "boolean"
}
- },
+ }
+ ]
+ },
+ {
+ "id": 721,
+ "name": "isStorageError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
{
- "id": 593,
- "name": "prefix",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The prefix search string to filter files by."
- }
- ]
- },
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 10,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L10"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 722,
+ "name": "isStorageError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 121,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L121"
+ "fileName": "packages/core/storage-js/src/lib/errors.ts",
+ "line": 10,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/errors.ts#L10"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 723,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
+ }
}
- },
+ }
+ ]
+ },
+ {
+ "id": 1188,
+ "name": "isStorageVectorsError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
{
- "id": 596,
- "name": "sortBy",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 18,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1189,
+ "name": "isStorageVectorsError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The column and order to sort by"
+ "text": "Type guard to check if an error is a StorageVectorsError"
}
],
"blockTags": [
{
- "tag": "@default",
+ "tag": "@returns",
"content": [
{
- "kind": "code",
- "text": "```ts\n'name asc'\n```"
+ "kind": "text",
+ "text": "True if the error is a StorageVectorsError"
}
]
}
@@ -88425,954 +159088,1952 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 143,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L143"
+ "fileName": "packages/core/storage-js/src/lib/vectors/errors.ts",
+ "line": 18,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/errors.ts#L18"
}
],
- "type": {
- "type": "reference",
- "target": 588,
- "name": "SortByV2",
- "package": "@supabase/storage-js"
- }
- },
- {
- "id": 595,
- "name": "with_delimiter",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Whether to emulate a hierarchical listing of objects using delimiters.\n\n- When "
- },
- {
- "kind": "code",
- "text": "`false`"
- },
- {
- "kind": "text",
- "text": " (default), all objects are listed as flat key/value pairs.\n- When "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": ", the response groups objects by delimiter, making it appear\n like a file/folder hierarchy."
- }
- ],
- "blockTags": [
- {
- "tag": "@default",
- "content": [
+ "parameters": [
+ {
+ "id": 1190,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
{
- "kind": "code",
- "text": "```ts\nfalse\n```"
+ "kind": "text",
+ "text": "The error to check"
}
]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
}
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 137,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L137"
}
],
"type": {
- "type": "intrinsic",
- "name": "boolean"
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1153,
+ "name": "StorageVectorsError",
+ "package": "@supabase/storage-js"
+ }
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [594, 592, 593, 596, 595]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 111,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L111"
- }
]
},
{
- "id": 597,
- "name": "SearchV2Result",
+ "id": 1225,
+ "name": "normalizeToFloat32",
"variant": "declaration",
- "kind": 256,
+ "kind": 64,
"flags": {},
- "children": [
- {
- "id": 599,
- "name": "folders",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 148,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L148"
- }
- ],
- "type": {
- "type": "array",
- "elementType": {
- "type": "reflection",
- "declaration": {
- "id": 600,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 601,
- "name": "name",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 148,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L148"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [601]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 148,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L148"
- }
- ]
- }
- }
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Normalizes a number array to float32 format\nEnsures all vector values are valid 32-bit floats"
}
- },
+ ]
+ },
+ "sources": [
{
- "id": 598,
- "name": "hasNext",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 147,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L147"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 71,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
+ }
+ ],
+ "signatures": [
{
- "id": 603,
- "name": "nextCursor",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "id": 1226,
+ "name": "normalizeToFloat32",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Normalized float32 array"
+ }
+ ]
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 150,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L150"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 71,
+ "character": 34,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L71"
}
],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 602,
- "name": "objects",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
+ "parameters": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 149,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L149"
+ "id": 1227,
+ "name": "values",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of numbers to normalize"
+ }
+ ]
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
}
],
"type": {
"type": "array",
"elementType": {
- "type": "reference",
- "target": 547,
- "name": "FileObject",
- "package": "@supabase/storage-js"
+ "type": "intrinsic",
+ "name": "number"
}
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [599, 598, 603, 602]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 146,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L146"
- }
]
},
{
- "id": 571,
- "name": "SortBy",
+ "id": 1199,
+ "name": "resolveFetch",
"variant": "declaration",
- "kind": 256,
+ "kind": 64,
"flags": {},
- "children": [
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resolves the fetch implementation to use\nUses custom fetch if provided, otherwise falls back to:\n- Native fetch in browser/modern environments\n- @supabase/node-fetch polyfill in Node.js environments without fetch"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 572,
- "name": "column",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 12,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L12"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1200,
+ "name": "resolveFetch",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Resolved fetch function"
+ }
+ ]
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 46,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L46"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 12,
+ "character": 28,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L12"
}
],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 573,
- "name": "order",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
+ "parameters": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 47,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L47"
+ "id": 1201,
+ "name": "customFetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional custom fetch implementation"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1202,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1203,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1204,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1205,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1206,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1207,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1208,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
+ "type": "reflection",
+ "declaration": {
+ "id": 1209,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1210,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1211,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1212,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1213,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1214,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1215,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [572, 573]
- }
- ],
+ ]
+ },
+ {
+ "id": 1216,
+ "name": "resolveResponse",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resolves the Response constructor to use\nUses native Response in browser/modern environments\nFalls back to @supabase/node-fetch polyfill in Node.js environments"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 45,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L45"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 32,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L32"
}
- ]
- },
- {
- "id": 588,
- "name": "SortByV2",
- "variant": "declaration",
- "kind": 256,
- "flags": {},
- "children": [
+ ],
+ "signatures": [
{
- "id": 589,
- "name": "column",
- "variant": "declaration",
- "kind": 1024,
+ "id": 1217,
+ "name": "resolveResponse",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 107,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L107"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "name"
- },
- {
- "type": "literal",
- "value": "updated_at"
- },
+ "comment": {
+ "summary": [],
+ "blockTags": [
{
- "type": "literal",
- "value": "created_at"
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Response constructor"
+ }
+ ]
}
]
- }
- },
- {
- "id": 590,
- "name": "order",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 108,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L108"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 32,
+ "character": 31,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L32"
}
],
"type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "desc"
- },
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
{
- "type": "literal",
- "value": "asc"
+ "type": "reflection",
+ "declaration": {
+ "id": 1218,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 19898,
+ "character": 22
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1219,
+ "name": "resolveResponse",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 19900,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1220,
+ "name": "body",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "BodyInit"
+ },
+ "name": "BodyInit",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1221,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "ResponseInit"
+ },
+ "name": "ResponseInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
}
- ]
+ ],
+ "name": "Promise",
+ "package": "typescript"
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [589, 590]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 106,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L106"
- }
]
},
{
- "id": 534,
- "name": "StorageClientOptions",
+ "id": 1228,
+ "name": "validateVectorDimension",
"variant": "declaration",
- "kind": 256,
+ "kind": 64,
"flags": {},
- "children": [
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Validates vector dimensions match expected dimension\nThrows error if dimensions don't match"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@throws",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Error if dimensions don't match"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
{
- "id": 535,
- "name": "useNewHostname",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 84,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L84"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1229,
+ "name": "validateVectorDimension",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 6,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L6"
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 84,
+ "character": 39,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L84"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1230,
+ "name": "vector",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Vector data to validate"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1231,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1232,
+ "name": "float32",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 85,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L85"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1232]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/lib/vectors/helpers.ts",
+ "line": 85,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/lib/vectors/helpers.ts#L85"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1233,
+ "name": "expectedDimension",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Expected vector dimension"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
}
],
"type": {
"type": "intrinsic",
- "name": "boolean"
+ "name": "void"
}
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [535]
- }
- ],
+ ]
+ },
+ {
+ "id": 613,
+ "name": "StorageAnalyticsApi",
+ "variant": "reference",
+ "kind": 4194304,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/StorageClient.ts",
- "line": 5,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/StorageClient.ts#L5"
+ "fileName": "packages/core/storage-js/src/index.ts",
+ "line": 3,
+ "character": 20,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/index.ts#L3"
}
+ ],
+ "target": 47
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumerations",
+ "children": [1181]
+ },
+ {
+ "title": "Classes",
+ "children": [729, 500, 724, 745, 1158, 752, 1153, 1174, 905, 790, 999, 951, 841]
+ },
+ {
+ "title": "Interfaces",
+ "children": [
+ 631, 615, 1046, 1116, 671, 1077, 1148, 1192, 701, 637, 647, 664, 1108, 1114, 625,
+ 1094, 1099, 1085, 1089, 1120, 1129, 703, 1080, 1104, 1132, 1140, 673, 687, 681, 696,
+ 661, 678, 611, 892, 1144, 705, 1053, 1065, 1151, 1057, 1072, 1068
]
},
{
- "id": 608,
- "name": "TransformOptions",
+ "title": "Type Aliases",
+ "children": [1142, 614, 711, 1083, 713, 1191, 1198, 695, 1082, 1084, 1067]
+ },
+ {
+ "title": "Functions",
+ "children": [1222, 721, 1188, 1225, 1199, 1216, 1228]
+ },
+ {
+ "title": "References",
+ "children": [613]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/index.ts",
+ "line": 1,
+ "character": 0,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/index.ts#L1"
+ }
+ ]
+ },
+ {
+ "id": 2,
+ "name": "packages/BlobDownloadBuilder",
+ "variant": "declaration",
+ "kind": 2,
+ "flags": {},
+ "children": [
+ {
+ "id": 3,
+ "name": "default",
"variant": "declaration",
- "kind": 256,
+ "kind": 128,
"flags": {},
"children": [
{
- "id": 613,
- "name": "format",
+ "id": 4,
+ "name": "constructor",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the format of the image requested.\n\nWhen using 'origin' we force the format to be the same as the original image.\nWhen this option is not passed in, images are optimized to modern image formats like Webp."
- }
- ]
- },
+ "kind": 512,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 193,
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 9,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L193"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
}
],
- "type": {
- "type": "literal",
- "value": "origin"
- }
+ "signatures": [
+ {
+ "id": 5,
+ "name": "default",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 9,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 6,
+ "name": "downloadFn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 7,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 10,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 8,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 10,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 9,
+ "name": "shouldThrowOnError",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 3,
+ "name": "BlobDownloadBuilder",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
},
{
- "id": 610,
- "name": "height",
+ "id": 45,
+ "name": "[toStringTag]",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The height of the image in pixels."
- }
- ]
+ "isReadonly": true
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 173,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L173"
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 6,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
}
],
"type": {
"type": "intrinsic",
- "name": "number"
+ "name": "string"
+ },
+ "defaultValue": "'BlobDownloadBuilder'",
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.[toStringTag]"
}
},
{
- "id": 612,
- "name": "quality",
+ "id": 15,
+ "name": "asStream",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the quality of the returned image.\nA number from 20 to 100, with 100 being the highest quality.\nDefaults to 80"
- }
- ]
- },
+ "kind": 2048,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 186,
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 16,
+ "name": "asStream",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 14,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 475,
+ "name": "StreamDownloadBuilder",
+ "package": "@supabase/storage-js",
+ "qualifiedName": "default"
+ }
}
- ],
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
+ ]
},
{
- "id": 611,
- "name": "resize",
+ "id": 29,
+ "name": "catch",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The resize mode can be cover, contain or fill. Defaults to cover.\nCover resizes the image to maintain it's aspect ratio while filling the entire width and height.\nContain resizes the image to maintain it's aspect ratio while fitting the entire image within the width and height.\nFill resizes the image to fill the entire width and height. If the object's aspect ratio does not match the width and height, the image will be stretched to fit."
- }
- ]
- },
+ "kind": 2048,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 180,
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 25,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
}
],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "fill"
+ "signatures": [
+ {
+ "id": 30,
+ "name": "catch",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Attaches a callback for only the rejection of the Promise."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A Promise for the completion of the callback."
+ }
+ ]
+ }
+ ]
},
- {
- "type": "literal",
- "value": "contain"
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 25,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 31,
+ "name": "TResult",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 32,
+ "name": "onrejected",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The callback to execute when the Promise is rejected."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 33,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 26,
+ "character": 18,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 34,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 26,
+ "character": 18,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 35,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 31,
+ "name": "TResult",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 31,
+ "name": "TResult",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 713,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ],
+ "name": "DownloadResult",
+ "package": "@supabase/storage-js"
+ },
+ {
+ "type": "reference",
+ "target": 31,
+ "name": "TResult",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
},
- {
- "type": "literal",
- "value": "cover"
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.catch"
}
- ]
+ }
+ ],
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.catch"
}
},
{
- "id": 609,
- "name": "width",
+ "id": 36,
+ "name": "finally",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The width of the image in pixels."
- }
- ]
- },
+ "kind": 2048,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 169,
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 31,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
}
],
- "type": {
- "type": "intrinsic",
- "name": "number"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [613, 610, 612, 611, 609]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 165,
- "character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L165"
- }
- ]
- },
- {
- "id": 536,
- "name": "BucketType",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 3,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L3"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "STANDARD"
- },
- {
- "type": "literal",
- "value": "ANALYTICS"
- }
- ]
- }
- },
- {
- "id": 614,
- "name": "Camelize",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 200,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L200"
- }
- ],
- "typeParameters": [
- {
- "id": 615,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
- }
- ],
- "type": {
- "type": "mapped",
- "parameter": "K",
- "parameterType": {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 615,
- "name": "T",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- }
- },
- "templateType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "K"
- },
- "name": "K",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
- "objectType": {
+ "signatures": [
+ {
+ "id": 37,
+ "name": "finally",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The\nresolved value cannot be modified from the callback."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A Promise for the completion of the callback."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 31,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 38,
+ "name": "onfinally",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The callback to execute when the Promise is settled (fulfilled or rejected)."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 39,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 31,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 40,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 31,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 713,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ],
+ "name": "DownloadResult",
+ "package": "@supabase/storage-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.finally"
+ }
+ }
+ ],
+ "implementationOf": {
"type": "reference",
- "target": 615,
- "name": "T",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
+ "target": -1,
+ "name": "Promise.finally"
}
},
- "nameType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "CamelCase"
- },
- "typeArguments": [
+ {
+ "id": 17,
+ "name": "then",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 18,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ }
+ ],
+ "signatures": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Extract"
+ "id": 18,
+ "name": "then",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A Promise for the completion of which ever callback is executed."
+ }
+ ]
+ }
+ ]
},
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "K"
- },
- "name": "K",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
+ "sources": [
{
- "type": "intrinsic",
- "name": "string"
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 18,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
}
],
- "name": "Extract",
- "package": "typescript"
- }
- ],
- "name": "CamelCase",
- "package": "@supabase/storage-js"
- }
- }
- },
- {
- "id": 616,
- "name": "DownloadResult",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 204,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L204"
- }
- ],
- "typeParameters": [
- {
- "id": 623,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "reflection",
- "declaration": {
- "id": 617,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
+ "typeParameters": [
{
- "id": 618,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
+ "id": 19,
+ "name": "TResult1",
+ "variant": "typeParam",
+ "kind": 131072,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 206,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L206"
- }
- ],
- "type": {
+ "default": {
"type": "reference",
- "target": 623,
- "name": "T",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
+ "target": 713,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ],
+ "name": "DownloadResult",
+ "package": "@supabase/storage-js"
}
},
{
- "id": 619,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
+ "id": 20,
+ "name": "TResult2",
+ "variant": "typeParam",
+ "kind": 131072,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 207,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L207"
- }
- ],
- "type": {
- "type": "literal",
- "value": null
+ "default": {
+ "type": "intrinsic",
+ "name": "never"
}
}
],
- "groups": [
- {
- "title": "Properties",
- "children": [618, 619]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 205,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L205"
- }
- ]
- }
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 620,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
+ "parameters": [
{
- "id": 621,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 210,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L210"
- }
- ],
+ "id": 21,
+ "name": "onfulfilled",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The callback to execute when the Promise is resolved."
+ }
+ ]
+ },
"type": {
- "type": "literal",
- "value": null
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 22,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 19,
+ "character": 19,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 23,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 19,
+ "character": 19,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 24,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 713,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ],
+ "name": "DownloadResult",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 19,
+ "name": "TResult1",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 19,
+ "name": "TResult1",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
}
},
{
- "id": 622,
- "name": "error",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 211,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L211"
- }
- ],
+ "id": 25,
+ "name": "onrejected",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The callback to execute when the Promise is rejected."
+ }
+ ]
+ },
"type": {
- "type": "reference",
- "target": 627,
- "name": "StorageError",
- "package": "@supabase/storage-js"
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 26,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 20,
+ "character": 18,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 27,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 20,
+ "character": 18,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 28,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 20,
+ "name": "TResult2",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 20,
+ "name": "TResult2",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
}
}
],
- "groups": [
- {
- "title": "Properties",
- "children": [621, 622]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/types.ts",
- "line": 209,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/types.ts#L209"
- }
- ]
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 19,
+ "name": "TResult1",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 20,
+ "name": "TResult2",
+ "package": "@supabase/storage-js",
+ "refersToTypeParameter": true
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.then"
+ }
}
+ ],
+ "implementationOf": {
+ "type": "reference",
+ "target": -1,
+ "name": "Promise.then"
}
- ]
- }
- },
- {
- "id": 624,
- "name": "isStorageError",
- "variant": "declaration",
- "kind": 64,
- "flags": {},
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [4]
+ },
+ {
+ "title": "Properties",
+ "children": [45]
+ },
+ {
+ "title": "Methods",
+ "children": [15, 29, 36, 17]
+ }
+ ],
"sources": [
{
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 10,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L10"
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "line": 5,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
}
],
- "signatures": [
+ "implementedTypes": [
{
- "id": 625,
- "name": "isStorageError",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/lib/errors.ts",
- "line": 10,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/lib/errors.ts#L10"
- }
- ],
- "parameters": [
- {
- "id": 626,
- "name": "error",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "unknown"
- }
- }
- ],
- "type": {
- "type": "predicate",
- "name": "error",
- "asserts": false,
- "targetType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
"type": "reference",
- "target": 627,
- "name": "StorageError",
+ "target": 713,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ],
+ "name": "DownloadResult",
"package": "@supabase/storage-js"
}
- }
+ ],
+ "name": "Promise",
+ "package": "typescript"
}
]
}
@@ -89380,109 +161041,367 @@
"groups": [
{
"title": "Classes",
- "children": [632, 428, 627, 648]
- },
- {
- "title": "Interfaces",
- "children": [537, 581, 604, 547, 557, 574, 606, 583, 591, 597, 571, 588, 534, 608]
- },
- {
- "title": "Type Aliases",
- "children": [536, 614, 616]
- },
- {
- "title": "Functions",
- "children": [624]
+ "children": [3]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/index.ts",
+ "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/index.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
}
]
},
{
- "id": 2,
- "name": "packages/BlobDownloadBuilder",
+ "id": 46,
+ "name": "packages/StorageAnalyticsApi",
"variant": "declaration",
"kind": 2,
"flags": {},
"children": [
{
- "id": 3,
+ "id": 47,
"name": "default",
"variant": "declaration",
"kind": 128,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "API class for managing Analytics Buckets using Iceberg tables\nProvides methods for creating, listing, and deleting analytics buckets"
+ }
+ ]
+ },
"children": [
{
- "id": 4,
+ "id": 48,
"name": "constructor",
"variant": "declaration",
"kind": 512,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 9,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
}
],
"signatures": [
{
- "id": 5,
+ "id": 49,
"name": "default",
"variant": "signature",
"kind": 16384,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new StorageAnalyticsApi instance"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 9,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 23,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L9"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
}
],
"parameters": [
{
- "id": 6,
- "name": "downloadFn",
+ "id": 50,
+ "name": "url",
"variant": "param",
"kind": 32768,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The base URL for the storage API"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 51,
+ "name": "headers",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP headers to include in requests"
+ }
+ ]
+ },
"type": {
"type": "reflection",
"declaration": {
- "id": 7,
+ "id": 52,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 10,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 23,
+ "character": 36,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 53,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 23,
+ "character": 38,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L23"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 54,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ },
+ {
+ "id": 55,
+ "name": "fetch",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional custom fetch implementation"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 56,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
}
],
"signatures": [
{
- "id": 8,
+ "id": 57,
"name": "__type",
"variant": "signature",
"kind": 4096,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 10,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L10"
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 58,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 59,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 60,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 61,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 62,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
}
],
"type": {
@@ -89509,89 +161428,12 @@
]
}
}
- },
- {
- "id": 9,
- "name": "shouldThrowOnError",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 3,
- "name": "BlobDownloadBuilder",
- "package": "@supabase/storage-js",
- "qualifiedName": "default"
- }
- }
- ]
- },
- {
- "id": 45,
- "name": "[toStringTag]",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isReadonly": true
- },
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 6,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L6"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- },
- "defaultValue": "'BlobDownloadBuilder'",
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.[toStringTag]"
- }
- },
- {
- "id": 15,
- "name": "asStream",
- "variant": "declaration",
- "kind": 2048,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 14,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
- }
- ],
- "signatures": [
- {
- "id": 16,
- "name": "asStream",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 14,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L14"
}
],
"type": {
"type": "reference",
- "target": 403,
- "name": "StreamDownloadBuilder",
+ "target": 47,
+ "name": "StorageAnalyticsApi",
"package": "@supabase/storage-js",
"qualifiedName": "default"
}
@@ -89599,23 +161441,23 @@
]
},
{
- "id": 29,
- "name": "catch",
+ "id": 79,
+ "name": "createBucket",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 25,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 57,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
}
],
"signatures": [
{
- "id": 30,
- "name": "catch",
+ "id": 80,
+ "name": "createBucket",
"variant": "signature",
"kind": 4096,
"flags": {},
@@ -89623,7 +161465,7 @@
"summary": [
{
"kind": "text",
- "text": "Attaches a callback for only the rejection of the Promise."
+ "text": "Creates a new analytics bucket using Iceberg tables\nAnalytics buckets are optimized for analytical queries and data processing"
}
],
"blockTags": [
@@ -89632,7 +161474,16 @@
"content": [
{
"kind": "text",
- "text": "A Promise for the completion of the callback."
+ "text": "Promise with newly created bucket name or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await storage.analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```"
}
]
}
@@ -89640,202 +161491,202 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 25,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L25"
- }
- ],
- "typeParameters": [
- {
- "id": 31,
- "name": "TResult",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "never"
- }
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 57,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L57"
}
],
"parameters": [
{
- "id": 32,
- "name": "onrejected",
+ "id": 81,
+ "name": "name",
"variant": "param",
"kind": 32768,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The callback to execute when the Promise is rejected."
+ "text": "A unique name for the bucket you are creating"
}
]
},
"type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
"type": "union",
"types": [
{
- "type": "literal",
- "value": null
+ "type": "reflection",
+ "declaration": {
+ "id": 82,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 83,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 59,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L59"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 631,
+ "name": "AnalyticBucket",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 84,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 60,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L60"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [83, 84]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 58,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L58"
+ }
+ ]
+ }
},
{
"type": "reflection",
"declaration": {
- "id": 33,
+ "id": 85,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 26,
- "character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
- }
- ],
- "signatures": [
+ "children": [
{
- "id": 34,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "id": 86,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 26,
- "character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L26"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 63,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L63"
}
],
- "parameters": [
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 87,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "id": 35,
- "name": "reason",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 64,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L64"
}
],
"type": {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": 31,
- "name": "TResult",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 31,
- "name": "TResult",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "PromiseLike",
- "package": "typescript"
- }
- ]
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
}
}
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [86, 87]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 62,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L62"
+ }
]
}
}
]
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": 616,
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
- },
- "name": "Blob",
- "package": "typescript"
- }
- ],
- "name": "DownloadResult",
- "package": "@supabase/storage-js"
- },
- {
- "type": "reference",
- "target": 31,
- "name": "TResult",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- }
- ]
- }
],
"name": "Promise",
"package": "typescript"
- },
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.catch"
}
}
- ],
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.catch"
- }
+ ]
},
{
- "id": 36,
- "name": "finally",
+ "id": 103,
+ "name": "deleteBucket",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 31,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 170,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
}
],
"signatures": [
{
- "id": 37,
- "name": "finally",
+ "id": 104,
+ "name": "deleteBucket",
"variant": "signature",
"kind": 4096,
"flags": {},
@@ -89843,7 +161694,7 @@
"summary": [
{
"kind": "text",
- "text": "Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The\nresolved value cannot be modified from the callback."
+ "text": "Deletes an existing analytics bucket\nA bucket can't be deleted with existing objects inside it\nYou must first empty the bucket before deletion"
}
],
"blockTags": [
@@ -89852,7 +161703,16 @@
"content": [
{
"kind": "text",
- "text": "A Promise for the completion of the callback."
+ "text": "Promise with success message or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await analyticsApi.deleteBucket('old-analytics-bucket')\nif (error) {\n console.error('Failed to delete bucket:', error.message)\n} else {\n console.log('Bucket deleted successfully:', data.message)\n}\n```"
}
]
}
@@ -89860,138 +161720,241 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 31,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 170,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L170"
}
],
"parameters": [
{
- "id": 38,
- "name": "onfinally",
+ "id": 105,
+ "name": "bucketId",
"variant": "param",
"kind": 32768,
- "flags": {
- "isOptional": true
- },
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The callback to execute when the Promise is settled (fulfilled or rejected)."
+ "text": "The unique identifier of the bucket you would like to delete"
}
]
},
"type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
"type": "union",
"types": [
- {
- "type": "literal",
- "value": null
- },
{
"type": "reflection",
"declaration": {
- "id": 39,
+ "id": 106,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "sources": [
+ "children": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 31,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "id": 107,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 172,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 108,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 109,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 172,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [109]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 172,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L172"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 110,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 173,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L173"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
}
],
- "signatures": [
+ "groups": [
{
- "id": 40,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "title": "Properties",
+ "children": [107, 110]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 171,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L171"
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 111,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 112,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 31,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L31"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 176,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L176"
}
],
"type": {
- "type": "intrinsic",
- "name": "void"
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 113,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 177,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L177"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
}
}
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [112, 113]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 175,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L175"
+ }
]
}
}
]
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 616,
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
- },
- "name": "Blob",
- "package": "typescript"
- }
- ],
- "name": "DownloadResult",
- "package": "@supabase/storage-js"
- }
],
"name": "Promise",
"package": "typescript"
- },
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.finally"
}
}
- ],
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.finally"
- }
+ ]
},
{
- "id": 17,
- "name": "then",
+ "id": 88,
+ "name": "listBuckets",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 18,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 109,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
}
],
"signatures": [
{
- "id": 18,
- "name": "then",
+ "id": 89,
+ "name": "listBuckets",
"variant": "signature",
"kind": 4096,
"flags": {},
@@ -89999,7 +161962,7 @@
"summary": [
{
"kind": "text",
- "text": "Attaches callbacks for the resolution and/or rejection of the Promise."
+ "text": "Retrieves the details of all Analytics Storage buckets within an existing project\nOnly returns buckets of type 'ANALYTICS'"
}
],
"blockTags": [
@@ -90008,7 +161971,16 @@
"content": [
{
"kind": "text",
- "text": "A Promise for the completion of which ever callback is executed."
+ "text": "Promise with list of analytics buckets or error"
+ }
+ ]
+ },
+ {
+ "tag": "@example",
+ "content": [
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await storage.analytics.listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'analytics'\n})\nif (data) {\n console.log('Found analytics buckets:', data.length)\n data.forEach(bucket => console.log(`- ${bucket.name}`))\n}\n```"
}
]
}
@@ -90016,366 +161988,456 @@
},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 18,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L18"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 109,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
}
],
- "typeParameters": [
+ "parameters": [
{
- "id": 19,
- "name": "TResult1",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "reference",
- "target": 616,
- "typeArguments": [
+ "id": 90,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
+ "kind": "text",
+ "text": "Query parameters for listing buckets"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 91,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 92,
+ "name": "limit",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Maximum number of buckets to return"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 110,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L110"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 93,
+ "name": "offset",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of buckets to skip"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 111,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L111"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 96,
+ "name": "search",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Search term to filter bucket names"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 114,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L114"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 94,
+ "name": "sortColumn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Column to sort by ('id', 'name', 'created_at', 'updated_at')"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 112,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L112"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "id"
+ },
+ {
+ "type": "literal",
+ "value": "name"
+ },
+ {
+ "type": "literal",
+ "value": "created_at"
+ },
+ {
+ "type": "literal",
+ "value": "updated_at"
+ }
+ ]
+ }
},
- "name": "Blob",
- "package": "typescript"
- }
- ],
- "name": "DownloadResult",
- "package": "@supabase/storage-js"
- }
- },
- {
- "id": 20,
- "name": "TResult2",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "never"
+ {
+ "id": 95,
+ "name": "sortOrder",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sort order ('asc' or 'desc')"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 113,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L113"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "asc"
+ },
+ {
+ "type": "literal",
+ "value": "desc"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [92, 93, 96, 94, 95]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 109,
+ "character": 30,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L109"
+ }
+ ]
+ }
}
}
],
- "parameters": [
- {
- "id": 21,
- "name": "onfulfilled",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback to execute when the Promise is resolved."
- }
- ]
- },
- "type": {
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
"type": "union",
"types": [
- {
- "type": "literal",
- "value": null
- },
{
"type": "reflection",
"declaration": {
- "id": 22,
+ "id": 97,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 19,
- "character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
- }
- ],
- "signatures": [
+ "children": [
{
- "id": 23,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "id": 98,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 19,
- "character": 19,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L19"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 117,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L117"
}
],
- "parameters": [
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 631,
+ "name": "AnalyticBucket",
+ "package": "@supabase/storage-js"
+ }
+ }
+ },
+ {
+ "id": 99,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "id": 24,
- "name": "value",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 616,
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
- },
- "name": "Blob",
- "package": "typescript"
- }
- ],
- "name": "DownloadResult",
- "package": "@supabase/storage-js"
- }
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 118,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L118"
}
],
"type": {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": 19,
- "name": "TResult1",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 19,
- "name": "TResult1",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "PromiseLike",
- "package": "typescript"
- }
- ]
+ "type": "literal",
+ "value": null
}
}
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [98, 99]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 116,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L116"
+ }
]
}
- }
- ]
- }
- },
- {
- "id": 25,
- "name": "onrejected",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback to execute when the Promise is rejected."
- }
- ]
- },
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
},
{
"type": "reflection",
"declaration": {
- "id": 26,
+ "id": 100,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 20,
- "character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
- }
- ],
- "signatures": [
+ "children": [
{
- "id": 27,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "id": 101,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 20,
- "character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L20"
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 121,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L121"
}
],
- "parameters": [
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 102,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "id": 28,
- "name": "reason",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "any"
- }
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 122,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L122"
}
],
"type": {
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": 20,
- "name": "TResult2",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "TResult2",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "PromiseLike",
- "package": "typescript"
- }
- ]
+ "type": "reference",
+ "target": 724,
+ "name": "StorageError",
+ "package": "@supabase/storage-js"
}
}
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [101, 102]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 120,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L120"
+ }
]
}
}
]
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 77,
+ "name": "throwOnError",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 35,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 78,
+ "name": "throwOnError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
{
- "type": "union",
- "types": [
- {
- "type": "reference",
- "target": 19,
- "name": "TResult1",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
- },
+ "kind": "text",
+ "text": "Enable throwing errors instead of returning them in the response\nWhen enabled, failed operations will throw instead of returning { data: null, error }"
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
{
- "type": "reference",
- "target": 20,
- "name": "TResult2",
- "package": "@supabase/storage-js",
- "refersToTypeParameter": true
+ "kind": "text",
+ "text": "This instance for method chaining"
}
]
}
- ],
- "name": "Promise",
- "package": "typescript"
+ ]
},
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.then"
+ "sources": [
+ {
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 35,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L35"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "this"
}
}
- ],
- "implementationOf": {
- "type": "reference",
- "target": -1,
- "name": "Promise.then"
- }
+ ]
}
],
"groups": [
{
"title": "Constructors",
- "children": [4]
- },
- {
- "title": "Properties",
- "children": [45]
+ "children": [48]
},
{
"title": "Methods",
- "children": [15, 29, 36, 17]
+ "children": [79, 103, 88, 77]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
- "line": 5,
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
+ "line": 11,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L5"
- }
- ],
- "implementedTypes": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 616,
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Blob"
- },
- "name": "Blob",
- "package": "typescript"
- }
- ],
- "name": "DownloadResult",
- "package": "@supabase/storage-js"
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L11"
}
]
}
@@ -90383,34 +162445,34 @@
"groups": [
{
"title": "Classes",
- "children": [3]
+ "children": [47]
}
],
"sources": [
{
- "fileName": "packages/core/storage-js/src/packages/BlobDownloadBuilder.ts",
+ "fileName": "packages/core/storage-js/src/packages/StorageAnalyticsApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/BlobDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageAnalyticsApi.ts#L1"
}
]
},
{
- "id": 46,
+ "id": 114,
"name": "packages/StorageBucketApi",
"variant": "declaration",
"kind": 2,
"flags": {},
"children": [
{
- "id": 47,
+ "id": 115,
"name": "default",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 48,
+ "id": 116,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -90420,12 +162482,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"signatures": [
{
- "id": 49,
+ "id": 117,
"name": "default",
"variant": "signature",
"kind": 16384,
@@ -90435,12 +162497,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 14,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L14"
}
],
"parameters": [
{
- "id": 50,
+ "id": 118,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -90451,7 +162513,7 @@
}
},
{
- "id": 51,
+ "id": 119,
"name": "headers",
"variant": "param",
"kind": 32768,
@@ -90459,7 +162521,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 52,
+ "id": 120,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90469,12 +162531,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"indexSignatures": [
{
- "id": 53,
+ "id": 121,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -90484,12 +162546,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 16,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L16"
}
],
"parameters": [
{
- "id": 54,
+ "id": 122,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -90511,7 +162573,7 @@
"defaultValue": "{}"
},
{
- "id": 55,
+ "id": 123,
"name": "fetch",
"variant": "param",
"kind": 32768,
@@ -90521,7 +162583,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 56,
+ "id": 124,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -90533,14 +162595,14 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"signatures": [
{
- "id": 57,
+ "id": 125,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -90562,7 +162624,7 @@
],
"parameters": [
{
- "id": 58,
+ "id": 126,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -90592,7 +162654,7 @@
}
},
{
- "id": 59,
+ "id": 127,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -90632,7 +162694,7 @@
}
},
{
- "id": 60,
+ "id": 128,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -90647,14 +162709,14 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"parameters": [
{
- "id": 61,
+ "id": 129,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -90688,7 +162750,7 @@
}
},
{
- "id": 62,
+ "id": 130,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -90732,7 +162794,7 @@
}
},
{
- "id": 63,
+ "id": 131,
"name": "opts",
"variant": "param",
"kind": 32768,
@@ -90741,7 +162803,7 @@
},
"type": {
"type": "reference",
- "target": 534,
+ "target": 611,
"name": "StorageClientOptions",
"package": "@supabase/storage-js"
}
@@ -90749,7 +162811,7 @@
],
"type": {
"type": "reference",
- "target": 47,
+ "target": 115,
"name": "StorageBucketApi",
"package": "@supabase/storage-js",
"qualifiedName": "default"
@@ -90758,7 +162820,7 @@
]
},
{
- "id": 97,
+ "id": 166,
"name": "createBucket",
"variant": "declaration",
"kind": 2048,
@@ -90766,14 +162828,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 117,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
],
"signatures": [
{
- "id": 98,
+ "id": 167,
"name": "createBucket",
"variant": "signature",
"kind": 4096,
@@ -90800,14 +162862,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 117,
+ "line": 120,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L117"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
}
],
"parameters": [
{
- "id": 99,
+ "id": 168,
"name": "id",
"variant": "param",
"kind": 32768,
@@ -90826,7 +162888,7 @@
}
},
{
- "id": 100,
+ "id": 169,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -90834,14 +162896,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 101,
+ "id": 170,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 104,
+ "id": 173,
"name": "allowedMimeTypes",
"variant": "declaration",
"kind": 1024,
@@ -90859,9 +162921,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 122,
+ "line": 125,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L125"
}
],
"type": {
@@ -90882,7 +162944,7 @@
}
},
{
- "id": 103,
+ "id": 172,
"name": "fileSizeLimit",
"variant": "declaration",
"kind": 1024,
@@ -90900,9 +162962,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 121,
+ "line": 124,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L121"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L124"
}
],
"type": {
@@ -90924,7 +162986,7 @@
}
},
{
- "id": 102,
+ "id": 171,
"name": "public",
"variant": "declaration",
"kind": 1024,
@@ -90940,9 +163002,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 120,
+ "line": 123,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L120"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
}
],
"type": {
@@ -90951,7 +163013,7 @@
}
},
{
- "id": 105,
+ "id": 174,
"name": "type",
"variant": "declaration",
"kind": 1024,
@@ -90981,14 +163043,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 123,
+ "line": 126,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L123"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L126"
}
],
"type": {
"type": "reference",
- "target": 536,
+ "target": 614,
"name": "BucketType",
"package": "@supabase/storage-js"
}
@@ -90997,15 +163059,15 @@
"groups": [
{
"title": "Properties",
- "children": [104, 103, 102, 105]
+ "children": [173, 172, 171, 174]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 119,
+ "line": 122,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L119"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L122"
}
]
}
@@ -91026,14 +163088,14 @@
{
"type": "reflection",
"declaration": {
- "id": 106,
+ "id": 175,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 107,
+ "id": 176,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91041,9 +163103,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 129,
+ "line": 132,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L129"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
}
],
"type": {
@@ -91055,7 +163117,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 537,
+ "target": 615,
"name": "Bucket",
"package": "@supabase/storage-js"
},
@@ -91069,7 +163131,7 @@
}
},
{
- "id": 108,
+ "id": 177,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91077,9 +163139,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 130,
+ "line": 133,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L130"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
}
],
"type": {
@@ -91091,15 +163153,15 @@
"groups": [
{
"title": "Properties",
- "children": [107, 108]
+ "children": [176, 177]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 128,
+ "line": 131,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L128"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L131"
}
]
}
@@ -91107,14 +163169,14 @@
{
"type": "reflection",
"declaration": {
- "id": 109,
+ "id": 178,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 110,
+ "id": 179,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91122,9 +163184,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 133,
+ "line": 136,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L133"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L136"
}
],
"type": {
@@ -91133,7 +163195,7 @@
}
},
{
- "id": 111,
+ "id": 180,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91141,14 +163203,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 134,
+ "line": 137,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L134"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L137"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -91157,15 +163219,15 @@
"groups": [
{
"title": "Properties",
- "children": [110, 111]
+ "children": [179, 180]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 132,
+ "line": 135,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L132"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L135"
}
]
}
@@ -91180,7 +163242,7 @@
]
},
{
- "id": 139,
+ "id": 208,
"name": "deleteBucket",
"variant": "declaration",
"kind": 2048,
@@ -91188,14 +163250,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 260,
+ "line": 263,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
}
],
"signatures": [
{
- "id": 140,
+ "id": 209,
"name": "deleteBucket",
"variant": "signature",
"kind": 4096,
@@ -91219,14 +163281,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 260,
+ "line": 263,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L260"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
}
],
"parameters": [
{
- "id": 141,
+ "id": 210,
"name": "id",
"variant": "param",
"kind": 32768,
@@ -91258,14 +163320,14 @@
{
"type": "reflection",
"declaration": {
- "id": 142,
+ "id": 211,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 143,
+ "id": 212,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91273,22 +163335,22 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
+ "line": 265,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 144,
+ "id": 213,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 145,
+ "id": 214,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -91296,9 +163358,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
+ "line": 265,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
}
],
"type": {
@@ -91310,22 +163372,22 @@
"groups": [
{
"title": "Properties",
- "children": [145]
+ "children": [214]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 262,
+ "line": 265,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L262"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
}
]
}
}
},
{
- "id": 146,
+ "id": 215,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91333,9 +163395,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 263,
+ "line": 266,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L263"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
}
],
"type": {
@@ -91347,15 +163409,15 @@
"groups": [
{
"title": "Properties",
- "children": [143, 146]
+ "children": [212, 215]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 261,
+ "line": 264,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L261"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L264"
}
]
}
@@ -91363,14 +163425,14 @@
{
"type": "reflection",
"declaration": {
- "id": 147,
+ "id": 216,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 148,
+ "id": 217,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91378,9 +163440,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 266,
+ "line": 269,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L266"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L269"
}
],
"type": {
@@ -91389,7 +163451,7 @@
}
},
{
- "id": 149,
+ "id": 218,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91397,14 +163459,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 267,
+ "line": 270,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L267"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L270"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -91413,15 +163475,15 @@
"groups": [
{
"title": "Properties",
- "children": [148, 149]
+ "children": [217, 218]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 265,
+ "line": 268,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L265"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L268"
}
]
}
@@ -91436,7 +163498,7 @@
]
},
{
- "id": 128,
+ "id": 197,
"name": "emptyBucket",
"variant": "declaration",
"kind": 2048,
@@ -91444,14 +163506,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 224,
+ "line": 227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
}
],
"signatures": [
{
- "id": 129,
+ "id": 198,
"name": "emptyBucket",
"variant": "signature",
"kind": 4096,
@@ -91467,14 +163529,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 224,
+ "line": 227,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L224"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
}
],
"parameters": [
{
- "id": 130,
+ "id": 199,
"name": "id",
"variant": "param",
"kind": 32768,
@@ -91506,14 +163568,14 @@
{
"type": "reflection",
"declaration": {
- "id": 131,
+ "id": 200,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 132,
+ "id": 201,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91521,22 +163583,22 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
+ "line": 229,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 133,
+ "id": 202,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 134,
+ "id": 203,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -91544,9 +163606,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
+ "line": 229,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
}
],
"type": {
@@ -91558,22 +163620,22 @@
"groups": [
{
"title": "Properties",
- "children": [134]
+ "children": [203]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 226,
+ "line": 229,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L226"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
}
]
}
}
},
{
- "id": 135,
+ "id": 204,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91581,9 +163643,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 227,
+ "line": 230,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L227"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
}
],
"type": {
@@ -91595,15 +163657,15 @@
"groups": [
{
"title": "Properties",
- "children": [132, 135]
+ "children": [201, 204]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 225,
+ "line": 228,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L225"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L228"
}
]
}
@@ -91611,14 +163673,14 @@
{
"type": "reflection",
"declaration": {
- "id": 136,
+ "id": 205,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 137,
+ "id": 206,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91626,9 +163688,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 230,
+ "line": 233,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L230"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L233"
}
],
"type": {
@@ -91637,7 +163699,7 @@
}
},
{
- "id": 138,
+ "id": 207,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91645,14 +163707,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 231,
+ "line": 234,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L231"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L234"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -91661,15 +163723,15 @@
"groups": [
{
"title": "Properties",
- "children": [137, 138]
+ "children": [206, 207]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 229,
+ "line": 232,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L232"
}
]
}
@@ -91684,7 +163746,7 @@
]
},
{
- "id": 88,
+ "id": 157,
"name": "getBucket",
"variant": "declaration",
"kind": 2048,
@@ -91692,14 +163754,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 77,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"signatures": [
{
- "id": 89,
+ "id": 158,
"name": "getBucket",
"variant": "signature",
"kind": 4096,
@@ -91715,14 +163777,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 77,
+ "line": 80,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L77"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
}
],
"parameters": [
{
- "id": 90,
+ "id": 159,
"name": "id",
"variant": "param",
"kind": 32768,
@@ -91754,14 +163816,14 @@
{
"type": "reflection",
"declaration": {
- "id": 91,
+ "id": 160,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 92,
+ "id": 161,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91769,20 +163831,20 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 79,
+ "line": 82,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L79"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
}
],
"type": {
"type": "reference",
- "target": 537,
+ "target": 615,
"name": "Bucket",
"package": "@supabase/storage-js"
}
},
{
- "id": 93,
+ "id": 162,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91790,9 +163852,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 80,
+ "line": 83,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L80"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
}
],
"type": {
@@ -91804,15 +163866,15 @@
"groups": [
{
"title": "Properties",
- "children": [92, 93]
+ "children": [161, 162]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 78,
+ "line": 81,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L78"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L81"
}
]
}
@@ -91820,14 +163882,14 @@
{
"type": "reflection",
"declaration": {
- "id": 94,
+ "id": 163,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 95,
+ "id": 164,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91835,9 +163897,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 83,
+ "line": 86,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L83"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L86"
}
],
"type": {
@@ -91846,7 +163908,7 @@
}
},
{
- "id": 96,
+ "id": 165,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91854,14 +163916,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 84,
+ "line": 87,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L84"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L87"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -91870,15 +163932,15 @@
"groups": [
{
"title": "Properties",
- "children": [95, 96]
+ "children": [164, 165]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 82,
+ "line": 85,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L82"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L85"
}
]
}
@@ -91893,7 +163955,7 @@
]
},
{
- "id": 80,
+ "id": 148,
"name": "listBuckets",
"variant": "declaration",
"kind": 2048,
@@ -91903,12 +163965,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 47,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
}
],
"signatures": [
{
- "id": 81,
+ "id": 149,
"name": "listBuckets",
"variant": "signature",
"kind": 4096,
@@ -91926,7 +163988,24 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 47,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L47"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 150,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 625,
+ "name": "ListBucketOptions",
+ "package": "@supabase/storage-js"
+ }
}
],
"type": {
@@ -91942,14 +164021,14 @@
{
"type": "reflection",
"declaration": {
- "id": 82,
+ "id": 151,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 83,
+ "id": 152,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -91959,21 +164038,21 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 49,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L49"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 537,
+ "target": 615,
"name": "Bucket",
"package": "@supabase/storage-js"
}
}
},
{
- "id": 84,
+ "id": 153,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -91983,7 +164062,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 50,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L50"
}
],
"type": {
@@ -91995,7 +164074,7 @@
"groups": [
{
"title": "Properties",
- "children": [83, 84]
+ "children": [152, 153]
}
],
"sources": [
@@ -92003,7 +164082,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 48,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L48"
}
]
}
@@ -92011,14 +164090,14 @@
{
"type": "reflection",
"declaration": {
- "id": 85,
+ "id": 154,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 86,
+ "id": 155,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92028,7 +164107,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 53,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L53"
}
],
"type": {
@@ -92037,7 +164116,7 @@
}
},
{
- "id": 87,
+ "id": 156,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92047,12 +164126,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 54,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L54"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -92061,7 +164140,7 @@
"groups": [
{
"title": "Properties",
- "children": [86, 87]
+ "children": [155, 156]
}
],
"sources": [
@@ -92069,7 +164148,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 52,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L52"
}
]
}
@@ -92084,7 +164163,7 @@
]
},
{
- "id": 78,
+ "id": 146,
"name": "throwOnError",
"variant": "declaration",
"kind": 2048,
@@ -92096,12 +164175,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 39,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
}
],
"signatures": [
{
- "id": 79,
+ "id": 147,
"name": "throwOnError",
"variant": "signature",
"kind": 4096,
@@ -92119,7 +164198,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 39,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L39"
}
],
"type": {
@@ -92130,7 +164209,7 @@
]
},
{
- "id": 112,
+ "id": 181,
"name": "updateBucket",
"variant": "declaration",
"kind": 2048,
@@ -92138,14 +164217,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 176,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"signatures": [
{
- "id": 113,
+ "id": 182,
"name": "updateBucket",
"variant": "signature",
"kind": 4096,
@@ -92161,14 +164240,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 176,
+ "line": 179,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L176"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
}
],
"parameters": [
{
- "id": 114,
+ "id": 183,
"name": "id",
"variant": "param",
"kind": 32768,
@@ -92187,7 +164266,7 @@
}
},
{
- "id": 115,
+ "id": 184,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -92195,14 +164274,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 116,
+ "id": 185,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 119,
+ "id": 188,
"name": "allowedMimeTypes",
"variant": "declaration",
"kind": 1024,
@@ -92220,9 +164299,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 181,
+ "line": 184,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
}
],
"type": {
@@ -92243,7 +164322,7 @@
}
},
{
- "id": 118,
+ "id": 187,
"name": "fileSizeLimit",
"variant": "declaration",
"kind": 1024,
@@ -92261,9 +164340,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 180,
+ "line": 183,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L180"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L183"
}
],
"type": {
@@ -92285,7 +164364,7 @@
}
},
{
- "id": 117,
+ "id": 186,
"name": "public",
"variant": "declaration",
"kind": 1024,
@@ -92301,9 +164380,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 179,
+ "line": 182,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L179"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L182"
}
],
"type": {
@@ -92315,15 +164394,15 @@
"groups": [
{
"title": "Properties",
- "children": [119, 118, 117]
+ "children": [188, 187, 186]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 178,
+ "line": 181,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L178"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L181"
}
]
}
@@ -92343,14 +164422,14 @@
{
"type": "reflection",
"declaration": {
- "id": 120,
+ "id": 189,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 121,
+ "id": 190,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92358,22 +164437,22 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
+ "line": 188,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 122,
+ "id": 191,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 123,
+ "id": 192,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -92381,9 +164460,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
+ "line": 188,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
}
],
"type": {
@@ -92395,22 +164474,22 @@
"groups": [
{
"title": "Properties",
- "children": [123]
+ "children": [192]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 185,
+ "line": 188,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
}
]
}
}
},
{
- "id": 124,
+ "id": 193,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92418,9 +164497,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 186,
+ "line": 189,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L186"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
}
],
"type": {
@@ -92432,15 +164511,15 @@
"groups": [
{
"title": "Properties",
- "children": [121, 124]
+ "children": [190, 193]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 184,
+ "line": 187,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L184"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L187"
}
]
}
@@ -92448,14 +164527,14 @@
{
"type": "reflection",
"declaration": {
- "id": 125,
+ "id": 194,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 126,
+ "id": 195,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -92463,9 +164542,9 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 189,
+ "line": 192,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L189"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L192"
}
],
"type": {
@@ -92474,7 +164553,7 @@
}
},
{
- "id": 127,
+ "id": 196,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -92482,14 +164561,14 @@
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 190,
+ "line": 193,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L190"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L193"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -92498,15 +164577,15 @@
"groups": [
{
"title": "Properties",
- "children": [126, 127]
+ "children": [195, 196]
}
],
"sources": [
{
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
- "line": 188,
+ "line": 191,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L188"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L191"
}
]
}
@@ -92524,11 +164603,11 @@
"groups": [
{
"title": "Constructors",
- "children": [48]
+ "children": [116]
},
{
"title": "Methods",
- "children": [97, 139, 128, 88, 80, 78, 112]
+ "children": [166, 208, 197, 157, 148, 146, 181]
}
],
"sources": [
@@ -92536,13 +164615,13 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 8,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L8"
}
],
"extendedBy": [
{
"type": "reference",
- "target": 428,
+ "target": 500,
"name": "StorageClient"
}
]
@@ -92551,7 +164630,7 @@
"groups": [
{
"title": "Classes",
- "children": [47]
+ "children": [115]
}
],
"sources": [
@@ -92559,26 +164638,26 @@
"fileName": "packages/core/storage-js/src/packages/StorageBucketApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageBucketApi.ts#L1"
}
]
},
{
- "id": 150,
+ "id": 222,
"name": "packages/StorageFileApi",
"variant": "declaration",
"kind": 2,
"flags": {},
"children": [
{
- "id": 151,
+ "id": 223,
"name": "default",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 152,
+ "id": 224,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -92588,12 +164667,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"signatures": [
{
- "id": 153,
+ "id": 225,
"name": "default",
"variant": "signature",
"kind": 16384,
@@ -92603,12 +164682,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 52,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L52"
}
],
"parameters": [
{
- "id": 154,
+ "id": 226,
"name": "url",
"variant": "param",
"kind": 32768,
@@ -92619,7 +164698,7 @@
}
},
{
- "id": 155,
+ "id": 227,
"name": "headers",
"variant": "param",
"kind": 32768,
@@ -92627,7 +164706,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 156,
+ "id": 228,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -92637,12 +164716,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"indexSignatures": [
{
- "id": 157,
+ "id": 229,
"name": "__index",
"variant": "signature",
"kind": 8192,
@@ -92652,12 +164731,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 54,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L54"
}
],
"parameters": [
{
- "id": 158,
+ "id": 230,
"name": "key",
"variant": "param",
"kind": 32768,
@@ -92679,7 +164758,7 @@
"defaultValue": "{}"
},
{
- "id": 159,
+ "id": 231,
"name": "bucketId",
"variant": "param",
"kind": 32768,
@@ -92692,7 +164771,7 @@
}
},
{
- "id": 160,
+ "id": 232,
"name": "fetch",
"variant": "param",
"kind": 32768,
@@ -92702,7 +164781,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 161,
+ "id": 233,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -92714,14 +164793,14 @@
"character": 17
},
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"signatures": [
{
- "id": 162,
+ "id": 234,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -92743,7 +164822,7 @@
],
"parameters": [
{
- "id": 163,
+ "id": 235,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -92773,7 +164852,7 @@
}
},
{
- "id": 164,
+ "id": 236,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -92813,7 +164892,7 @@
}
},
{
- "id": 165,
+ "id": 237,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -92828,14 +164907,14 @@
},
"sources": [
{
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
"character": 13
}
],
"parameters": [
{
- "id": 166,
+ "id": 238,
"name": "input",
"variant": "param",
"kind": 32768,
@@ -92869,7 +164948,7 @@
}
},
{
- "id": 167,
+ "id": 239,
"name": "init",
"variant": "param",
"kind": 32768,
@@ -92915,7 +164994,7 @@
],
"type": {
"type": "reference",
- "target": 151,
+ "target": 223,
"name": "StorageFileApi",
"package": "@supabase/storage-js",
"qualifiedName": "default"
@@ -92924,7 +165003,7 @@
]
},
{
- "id": 275,
+ "id": 347,
"name": "copy",
"variant": "declaration",
"kind": 2048,
@@ -92934,12 +165013,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L379"
}
],
"signatures": [
{
- "id": 276,
+ "id": 348,
"name": "copy",
"variant": "signature",
"kind": 4096,
@@ -92957,12 +165036,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 379,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L379"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L379"
}
],
"parameters": [
{
- "id": 277,
+ "id": 349,
"name": "fromPath",
"variant": "param",
"kind": 32768,
@@ -92989,7 +165068,7 @@
}
},
{
- "id": 278,
+ "id": 350,
"name": "toPath",
"variant": "param",
"kind": 32768,
@@ -93016,7 +165095,7 @@
}
},
{
- "id": 279,
+ "id": 351,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -93033,7 +165112,7 @@
},
"type": {
"type": "reference",
- "target": 581,
+ "target": 671,
"name": "DestinationOptions",
"package": "@supabase/storage-js"
}
@@ -93052,14 +165131,14 @@
{
"type": "reflection",
"declaration": {
- "id": 280,
+ "id": 352,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 281,
+ "id": 353,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93069,20 +165148,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 385,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 282,
+ "id": 354,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 283,
+ "id": 355,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -93092,7 +165171,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 385,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
}
],
"type": {
@@ -93104,7 +165183,7 @@
"groups": [
{
"title": "Properties",
- "children": [283]
+ "children": [355]
}
],
"sources": [
@@ -93112,14 +165191,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 385,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L385"
}
]
}
}
},
{
- "id": 284,
+ "id": 356,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93129,7 +165208,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 386,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L386"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L386"
}
],
"type": {
@@ -93141,7 +165220,7 @@
"groups": [
{
"title": "Properties",
- "children": [281, 284]
+ "children": [353, 356]
}
],
"sources": [
@@ -93149,7 +165228,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 384,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L384"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L384"
}
]
}
@@ -93157,14 +165236,14 @@
{
"type": "reflection",
"declaration": {
- "id": 285,
+ "id": 357,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 286,
+ "id": 358,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93174,7 +165253,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 389,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L389"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L389"
}
],
"type": {
@@ -93183,7 +165262,7 @@
}
},
{
- "id": 287,
+ "id": 359,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93193,12 +165272,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 390,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L390"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -93207,7 +165286,7 @@
"groups": [
{
"title": "Properties",
- "children": [286, 287]
+ "children": [358, 359]
}
],
"sources": [
@@ -93215,7 +165294,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 388,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L388"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L388"
}
]
}
@@ -93230,7 +165309,7 @@
]
},
{
- "id": 231,
+ "id": 303,
"name": "createSignedUploadUrl",
"variant": "declaration",
"kind": 2048,
@@ -93240,12 +165319,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L243"
}
],
"signatures": [
{
- "id": 232,
+ "id": 304,
"name": "createSignedUploadUrl",
"variant": "signature",
"kind": 4096,
@@ -93263,12 +165342,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 243,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L243"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L243"
}
],
"parameters": [
{
- "id": 233,
+ "id": 305,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -93295,7 +165374,7 @@
}
},
{
- "id": 234,
+ "id": 306,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -93305,14 +165384,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 235,
+ "id": 307,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 236,
+ "id": 308,
"name": "upsert",
"variant": "declaration",
"kind": 1024,
@@ -93330,7 +165409,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 245,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L245"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L245"
}
],
"type": {
@@ -93342,7 +165421,7 @@
"groups": [
{
"title": "Properties",
- "children": [236]
+ "children": [308]
}
],
"sources": [
@@ -93350,7 +165429,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 245,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L245"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L245"
}
]
}
@@ -93370,14 +165449,14 @@
{
"type": "reflection",
"declaration": {
- "id": 237,
+ "id": 309,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 238,
+ "id": 310,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93387,20 +165466,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 248,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 239,
+ "id": 311,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 242,
+ "id": 314,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -93410,7 +165489,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 248,
"character": 50,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
}
],
"type": {
@@ -93419,7 +165498,7 @@
}
},
{
- "id": 240,
+ "id": 312,
"name": "signedUrl",
"variant": "declaration",
"kind": 1024,
@@ -93429,7 +165508,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 248,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
}
],
"type": {
@@ -93438,7 +165517,7 @@
}
},
{
- "id": 241,
+ "id": 313,
"name": "token",
"variant": "declaration",
"kind": 1024,
@@ -93448,7 +165527,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 248,
"character": 35,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
}
],
"type": {
@@ -93460,7 +165539,7 @@
"groups": [
{
"title": "Properties",
- "children": [242, 240, 241]
+ "children": [314, 312, 313]
}
],
"sources": [
@@ -93468,14 +165547,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 248,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L248"
}
]
}
}
},
{
- "id": 243,
+ "id": 315,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93485,7 +165564,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 249,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L249"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L249"
}
],
"type": {
@@ -93497,7 +165576,7 @@
"groups": [
{
"title": "Properties",
- "children": [238, 243]
+ "children": [310, 315]
}
],
"sources": [
@@ -93505,7 +165584,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 247,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L247"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L247"
}
]
}
@@ -93513,14 +165592,14 @@
{
"type": "reflection",
"declaration": {
- "id": 244,
+ "id": 316,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 245,
+ "id": 317,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93530,7 +165609,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 252,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L252"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L252"
}
],
"type": {
@@ -93539,7 +165618,7 @@
}
},
{
- "id": 246,
+ "id": 318,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93549,12 +165628,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 253,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L253"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L253"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -93563,7 +165642,7 @@
"groups": [
{
"title": "Properties",
- "children": [245, 246]
+ "children": [317, 318]
}
],
"sources": [
@@ -93571,7 +165650,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 251,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L251"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L251"
}
]
}
@@ -93586,7 +165665,7 @@
]
},
{
- "id": 288,
+ "id": 360,
"name": "createSignedUrl",
"variant": "declaration",
"kind": 2048,
@@ -93596,12 +165675,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 426,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L426"
}
],
"signatures": [
{
- "id": 289,
+ "id": 361,
"name": "createSignedUrl",
"variant": "signature",
"kind": 4096,
@@ -93619,12 +165698,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 426,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L426"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L426"
}
],
"parameters": [
{
- "id": 290,
+ "id": 362,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -93651,7 +165730,7 @@
}
},
{
- "id": 291,
+ "id": 363,
"name": "expiresIn",
"variant": "param",
"kind": 32768,
@@ -93678,7 +165757,7 @@
}
},
{
- "id": 292,
+ "id": 364,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -93688,14 +165767,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 293,
+ "id": 365,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 294,
+ "id": 366,
"name": "download",
"variant": "declaration",
"kind": 1024,
@@ -93715,7 +165794,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 429,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
}
],
"type": {
@@ -93733,7 +165812,7 @@
}
},
{
- "id": 295,
+ "id": 367,
"name": "transform",
"variant": "declaration",
"kind": 1024,
@@ -93753,12 +165832,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 429,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
}
],
"type": {
"type": "reference",
- "target": 608,
+ "target": 705,
"name": "TransformOptions",
"package": "@supabase/storage-js"
}
@@ -93767,7 +165846,7 @@
"groups": [
{
"title": "Properties",
- "children": [294, 295]
+ "children": [366, 367]
}
],
"sources": [
@@ -93775,7 +165854,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 429,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L429"
}
]
}
@@ -93795,14 +165874,14 @@
{
"type": "reflection",
"declaration": {
- "id": 296,
+ "id": 368,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 297,
+ "id": 369,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93812,20 +165891,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 432,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 298,
+ "id": 370,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 299,
+ "id": 371,
"name": "signedUrl",
"variant": "declaration",
"kind": 1024,
@@ -93835,7 +165914,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 432,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
}
],
"type": {
@@ -93847,7 +165926,7 @@
"groups": [
{
"title": "Properties",
- "children": [299]
+ "children": [371]
}
],
"sources": [
@@ -93855,14 +165934,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 432,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L432"
}
]
}
}
},
{
- "id": 300,
+ "id": 372,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93872,7 +165951,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 433,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L433"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L433"
}
],
"type": {
@@ -93884,7 +165963,7 @@
"groups": [
{
"title": "Properties",
- "children": [297, 300]
+ "children": [369, 372]
}
],
"sources": [
@@ -93892,7 +165971,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 431,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L431"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L431"
}
]
}
@@ -93900,14 +165979,14 @@
{
"type": "reflection",
"declaration": {
- "id": 301,
+ "id": 373,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 302,
+ "id": 374,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -93917,7 +165996,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 436,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L436"
}
],
"type": {
@@ -93926,7 +166005,7 @@
}
},
{
- "id": 303,
+ "id": 375,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -93936,12 +166015,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 437,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L437"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L437"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -93950,7 +166029,7 @@
"groups": [
{
"title": "Properties",
- "children": [302, 303]
+ "children": [374, 375]
}
],
"sources": [
@@ -93958,7 +166037,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 435,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L435"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L435"
}
]
}
@@ -93973,7 +166052,7 @@
]
},
{
- "id": 304,
+ "id": 376,
"name": "createSignedUrls",
"variant": "declaration",
"kind": 2048,
@@ -93983,12 +166062,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 474,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L474"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L474"
}
],
"signatures": [
{
- "id": 305,
+ "id": 377,
"name": "createSignedUrls",
"variant": "signature",
"kind": 4096,
@@ -94006,12 +166085,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 474,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L474"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L474"
}
],
"parameters": [
{
- "id": 306,
+ "id": 378,
"name": "paths",
"variant": "param",
"kind": 32768,
@@ -94041,7 +166120,7 @@
}
},
{
- "id": 307,
+ "id": 379,
"name": "expiresIn",
"variant": "param",
"kind": 32768,
@@ -94068,7 +166147,7 @@
}
},
{
- "id": 308,
+ "id": 380,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -94078,14 +166157,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 309,
+ "id": 381,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 310,
+ "id": 382,
"name": "download",
"variant": "declaration",
"kind": 1024,
@@ -94103,7 +166182,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 477,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L477"
}
],
"type": {
@@ -94124,7 +166203,7 @@
"groups": [
{
"title": "Properties",
- "children": [310]
+ "children": [382]
}
],
"sources": [
@@ -94132,7 +166211,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 477,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L477"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L477"
}
]
}
@@ -94152,14 +166231,14 @@
{
"type": "reflection",
"declaration": {
- "id": 311,
+ "id": 383,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 312,
+ "id": 384,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94169,7 +166248,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 480,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
}
],
"type": {
@@ -94177,14 +166256,14 @@
"elementType": {
"type": "reflection",
"declaration": {
- "id": 313,
+ "id": 385,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 314,
+ "id": 386,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -94194,7 +166273,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 480,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
}
],
"type": {
@@ -94212,7 +166291,7 @@
}
},
{
- "id": 315,
+ "id": 387,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -94222,7 +166301,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 480,
"character": 38,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
}
],
"type": {
@@ -94240,7 +166319,7 @@
}
},
{
- "id": 316,
+ "id": 388,
"name": "signedUrl",
"variant": "declaration",
"kind": 1024,
@@ -94250,7 +166329,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 480,
"character": 59,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
}
],
"type": {
@@ -94262,7 +166341,7 @@
"groups": [
{
"title": "Properties",
- "children": [314, 315, 316]
+ "children": [386, 387, 388]
}
],
"sources": [
@@ -94270,7 +166349,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 480,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L480"
}
]
}
@@ -94278,7 +166357,7 @@
}
},
{
- "id": 317,
+ "id": 389,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -94288,7 +166367,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 481,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L481"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L481"
}
],
"type": {
@@ -94300,7 +166379,7 @@
"groups": [
{
"title": "Properties",
- "children": [312, 317]
+ "children": [384, 389]
}
],
"sources": [
@@ -94308,7 +166387,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 479,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L479"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L479"
}
]
}
@@ -94316,14 +166395,14 @@
{
"type": "reflection",
"declaration": {
- "id": 318,
+ "id": 390,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 319,
+ "id": 391,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94333,7 +166412,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 484,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L484"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L484"
}
],
"type": {
@@ -94342,7 +166421,7 @@
}
},
{
- "id": 320,
+ "id": 392,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -94352,12 +166431,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 485,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L485"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L485"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -94366,7 +166445,7 @@
"groups": [
{
"title": "Properties",
- "children": [319, 320]
+ "children": [391, 392]
}
],
"sources": [
@@ -94374,7 +166453,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 483,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L483"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L483"
}
]
}
@@ -94389,7 +166468,7 @@
]
},
{
- "id": 321,
+ "id": 393,
"name": "download",
"variant": "declaration",
"kind": 2048,
@@ -94399,12 +166478,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 526,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
}
],
"signatures": [
{
- "id": 322,
+ "id": 394,
"name": "download",
"variant": "signature",
"kind": 4096,
@@ -94430,12 +166509,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 526,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
}
],
"typeParameters": [
{
- "id": 323,
+ "id": 395,
"name": "Options",
"variant": "typeParam",
"kind": 131072,
@@ -94443,14 +166522,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 324,
+ "id": 396,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 325,
+ "id": 397,
"name": "transform",
"variant": "declaration",
"kind": 1024,
@@ -94462,12 +166541,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 526,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
}
],
"type": {
"type": "reference",
- "target": 608,
+ "target": 705,
"name": "TransformOptions",
"package": "@supabase/storage-js"
}
@@ -94476,7 +166555,7 @@
"groups": [
{
"title": "Properties",
- "children": [325]
+ "children": [397]
}
],
"sources": [
@@ -94484,7 +166563,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 526,
"character": 27,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L526"
}
]
}
@@ -94493,7 +166572,7 @@
],
"parameters": [
{
- "id": 326,
+ "id": 398,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -94520,7 +166599,7 @@
}
},
{
- "id": 327,
+ "id": 399,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -94529,7 +166608,7 @@
},
"type": {
"type": "reference",
- "target": 323,
+ "target": 395,
"name": "Options",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -94547,7 +166626,7 @@
]
},
{
- "id": 337,
+ "id": 409,
"name": "exists",
"variant": "declaration",
"kind": 2048,
@@ -94557,12 +166636,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"signatures": [
{
- "id": 338,
+ "id": 410,
"name": "exists",
"variant": "signature",
"kind": 4096,
@@ -94580,12 +166659,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 581,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L581"
}
],
"parameters": [
{
- "id": 339,
+ "id": 411,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -94609,14 +166688,14 @@
{
"type": "reflection",
"declaration": {
- "id": 340,
+ "id": 412,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 341,
+ "id": 413,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94626,7 +166705,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 583,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L583"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L583"
}
],
"type": {
@@ -94635,7 +166714,7 @@
}
},
{
- "id": 342,
+ "id": 414,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -94645,7 +166724,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 584,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L584"
}
],
"type": {
@@ -94657,7 +166736,7 @@
"groups": [
{
"title": "Properties",
- "children": [341, 342]
+ "children": [413, 414]
}
],
"sources": [
@@ -94665,7 +166744,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 582,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L582"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L582"
}
]
}
@@ -94673,14 +166752,14 @@
{
"type": "reflection",
"declaration": {
- "id": 343,
+ "id": 415,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 344,
+ "id": 416,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94690,7 +166769,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 587,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L587"
}
],
"type": {
@@ -94699,7 +166778,7 @@
}
},
{
- "id": 345,
+ "id": 417,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -94709,12 +166788,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 588,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L588"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -94723,7 +166802,7 @@
"groups": [
{
"title": "Properties",
- "children": [344, 345]
+ "children": [416, 417]
}
],
"sources": [
@@ -94731,7 +166810,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 586,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L586"
}
]
}
@@ -94746,7 +166825,7 @@
]
},
{
- "id": 346,
+ "id": 418,
"name": "getPublicUrl",
"variant": "declaration",
"kind": 2048,
@@ -94756,12 +166835,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 623,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L623"
}
],
"signatures": [
{
- "id": 347,
+ "id": 419,
"name": "getPublicUrl",
"variant": "signature",
"kind": 4096,
@@ -94779,12 +166858,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 623,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L623"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L623"
}
],
"parameters": [
{
- "id": 348,
+ "id": 420,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -94811,7 +166890,7 @@
}
},
{
- "id": 349,
+ "id": 421,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -94821,14 +166900,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 350,
+ "id": 422,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 351,
+ "id": 423,
"name": "download",
"variant": "declaration",
"kind": 1024,
@@ -94848,7 +166927,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 625,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
}
],
"type": {
@@ -94866,7 +166945,7 @@
}
},
{
- "id": 352,
+ "id": 424,
"name": "transform",
"variant": "declaration",
"kind": 1024,
@@ -94886,12 +166965,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 625,
"character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
}
],
"type": {
"type": "reference",
- "target": 608,
+ "target": 705,
"name": "TransformOptions",
"package": "@supabase/storage-js"
}
@@ -94900,7 +166979,7 @@
"groups": [
{
"title": "Properties",
- "children": [351, 352]
+ "children": [423, 424]
}
],
"sources": [
@@ -94908,7 +166987,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 625,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L625"
}
]
}
@@ -94918,14 +166997,14 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 353,
+ "id": 425,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 354,
+ "id": 426,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -94935,20 +167014,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 626,
"character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 355,
+ "id": 427,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 356,
+ "id": 428,
"name": "publicUrl",
"variant": "declaration",
"kind": 1024,
@@ -94958,7 +167037,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 626,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
}
],
"type": {
@@ -94970,7 +167049,7 @@
"groups": [
{
"title": "Properties",
- "children": [356]
+ "children": [428]
}
],
"sources": [
@@ -94978,7 +167057,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 626,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
}
]
}
@@ -94988,7 +167067,7 @@
"groups": [
{
"title": "Properties",
- "children": [354]
+ "children": [426]
}
],
"sources": [
@@ -94996,7 +167075,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 626,
"character": 5,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L626"
}
]
}
@@ -95005,7 +167084,7 @@
]
},
{
- "id": 328,
+ "id": 400,
"name": "info",
"variant": "declaration",
"kind": 2048,
@@ -95015,12 +167094,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L547"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L547"
}
],
"signatures": [
{
- "id": 329,
+ "id": 401,
"name": "info",
"variant": "signature",
"kind": 4096,
@@ -95038,12 +167117,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 547,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L547"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L547"
}
],
"parameters": [
{
- "id": 330,
+ "id": 402,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -95067,14 +167146,14 @@
{
"type": "reflection",
"declaration": {
- "id": 331,
+ "id": 403,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 332,
+ "id": 404,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95084,16 +167163,16 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 549,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L549"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L549"
}
],
"type": {
"type": "reference",
- "target": 614,
+ "target": 711,
"typeArguments": [
{
"type": "reference",
- "target": 557,
+ "target": 647,
"name": "FileObjectV2",
"package": "@supabase/storage-js"
}
@@ -95103,7 +167182,7 @@
}
},
{
- "id": 333,
+ "id": 405,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95113,7 +167192,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 550,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L550"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L550"
}
],
"type": {
@@ -95125,7 +167204,7 @@
"groups": [
{
"title": "Properties",
- "children": [332, 333]
+ "children": [404, 405]
}
],
"sources": [
@@ -95133,7 +167212,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 548,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L548"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L548"
}
]
}
@@ -95141,14 +167220,14 @@
{
"type": "reflection",
"declaration": {
- "id": 334,
+ "id": 406,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 335,
+ "id": 407,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95158,7 +167237,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 553,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L553"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L553"
}
],
"type": {
@@ -95167,7 +167246,7 @@
}
},
{
- "id": 336,
+ "id": 408,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95177,12 +167256,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 554,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L554"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L554"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -95191,7 +167270,7 @@
"groups": [
{
"title": "Properties",
- "children": [335, 336]
+ "children": [407, 408]
}
],
"sources": [
@@ -95199,7 +167278,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 552,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L552"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L552"
}
]
}
@@ -95214,7 +167293,7 @@
]
},
{
- "id": 366,
+ "id": 438,
"name": "list",
"variant": "declaration",
"kind": 2048,
@@ -95224,12 +167303,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 759,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L759"
}
],
"signatures": [
{
- "id": 367,
+ "id": 439,
"name": "list",
"variant": "signature",
"kind": 4096,
@@ -95247,12 +167326,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 759,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L759"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L759"
}
],
"parameters": [
{
- "id": 368,
+ "id": 440,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -95273,7 +167352,7 @@
}
},
{
- "id": 369,
+ "id": 441,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -95290,13 +167369,13 @@
},
"type": {
"type": "reference",
- "target": 583,
+ "target": 673,
"name": "SearchOptions",
"package": "@supabase/storage-js"
}
},
{
- "id": 370,
+ "id": 442,
"name": "parameters",
"variant": "param",
"kind": 32768,
@@ -95305,7 +167384,7 @@
},
"type": {
"type": "reference",
- "target": 604,
+ "target": 701,
"name": "FetchParameters",
"package": "@supabase/storage-js"
}
@@ -95324,14 +167403,14 @@
{
"type": "reflection",
"declaration": {
- "id": 371,
+ "id": 443,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 372,
+ "id": 444,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95341,21 +167420,21 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 765,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L765"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L765"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 547,
+ "target": 637,
"name": "FileObject",
"package": "@supabase/storage-js"
}
}
},
{
- "id": 373,
+ "id": 445,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95365,7 +167444,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 766,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L766"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L766"
}
],
"type": {
@@ -95377,7 +167456,7 @@
"groups": [
{
"title": "Properties",
- "children": [372, 373]
+ "children": [444, 445]
}
],
"sources": [
@@ -95385,7 +167464,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 764,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L764"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L764"
}
]
}
@@ -95393,14 +167472,14 @@
{
"type": "reflection",
"declaration": {
- "id": 374,
+ "id": 446,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 375,
+ "id": 447,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95410,7 +167489,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 769,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L769"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L769"
}
],
"type": {
@@ -95419,7 +167498,7 @@
}
},
{
- "id": 376,
+ "id": 448,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95429,12 +167508,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 770,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L770"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L770"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -95443,7 +167522,7 @@
"groups": [
{
"title": "Properties",
- "children": [375, 376]
+ "children": [447, 448]
}
],
"sources": [
@@ -95451,7 +167530,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 768,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L768"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L768"
}
]
}
@@ -95466,7 +167545,7 @@
]
},
{
- "id": 377,
+ "id": 449,
"name": "listV2",
"variant": "declaration",
"kind": 2048,
@@ -95476,12 +167555,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 800,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L800"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L800"
}
],
"signatures": [
{
- "id": 378,
+ "id": 450,
"name": "listV2",
"variant": "signature",
"kind": 4096,
@@ -95500,12 +167579,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 800,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L800"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L800"
}
],
"parameters": [
{
- "id": 379,
+ "id": 451,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -95522,13 +167601,13 @@
},
"type": {
"type": "reference",
- "target": 591,
+ "target": 681,
"name": "SearchV2Options",
"package": "@supabase/storage-js"
}
},
{
- "id": 380,
+ "id": 452,
"name": "parameters",
"variant": "param",
"kind": 32768,
@@ -95537,7 +167616,7 @@
},
"type": {
"type": "reference",
- "target": 604,
+ "target": 701,
"name": "FetchParameters",
"package": "@supabase/storage-js"
}
@@ -95556,14 +167635,14 @@
{
"type": "reflection",
"declaration": {
- "id": 381,
+ "id": 453,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 382,
+ "id": 454,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95573,18 +167652,18 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 805,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L805"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L805"
}
],
"type": {
"type": "reference",
- "target": 597,
+ "target": 696,
"name": "SearchV2Result",
"package": "@supabase/storage-js"
}
},
{
- "id": 383,
+ "id": 455,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95594,7 +167673,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 806,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L806"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L806"
}
],
"type": {
@@ -95606,7 +167685,7 @@
"groups": [
{
"title": "Properties",
- "children": [382, 383]
+ "children": [454, 455]
}
],
"sources": [
@@ -95614,7 +167693,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 804,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L804"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L804"
}
]
}
@@ -95622,14 +167701,14 @@
{
"type": "reflection",
"declaration": {
- "id": 384,
+ "id": 456,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 385,
+ "id": 457,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95639,7 +167718,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 809,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L809"
}
],
"type": {
@@ -95648,7 +167727,7 @@
}
},
{
- "id": 386,
+ "id": 458,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95658,12 +167737,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 810,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L810"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L810"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -95672,7 +167751,7 @@
"groups": [
{
"title": "Properties",
- "children": [385, 386]
+ "children": [457, 458]
}
],
"sources": [
@@ -95680,7 +167759,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 808,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L808"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L808"
}
]
}
@@ -95695,7 +167774,7 @@
]
},
{
- "id": 262,
+ "id": 334,
"name": "move",
"variant": "declaration",
"kind": 2048,
@@ -95705,12 +167784,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 333,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
}
],
"signatures": [
{
- "id": 263,
+ "id": 335,
"name": "move",
"variant": "signature",
"kind": 4096,
@@ -95728,12 +167807,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 333,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L333"
}
],
"parameters": [
{
- "id": 264,
+ "id": 336,
"name": "fromPath",
"variant": "param",
"kind": 32768,
@@ -95760,7 +167839,7 @@
}
},
{
- "id": 265,
+ "id": 337,
"name": "toPath",
"variant": "param",
"kind": 32768,
@@ -95787,7 +167866,7 @@
}
},
{
- "id": 266,
+ "id": 338,
"name": "options",
"variant": "param",
"kind": 32768,
@@ -95804,7 +167883,7 @@
},
"type": {
"type": "reference",
- "target": 581,
+ "target": 671,
"name": "DestinationOptions",
"package": "@supabase/storage-js"
}
@@ -95823,14 +167902,14 @@
{
"type": "reflection",
"declaration": {
- "id": 267,
+ "id": 339,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 268,
+ "id": 340,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95840,20 +167919,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 339,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 269,
+ "id": 341,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 270,
+ "id": 342,
"name": "message",
"variant": "declaration",
"kind": 1024,
@@ -95863,7 +167942,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 339,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
}
],
"type": {
@@ -95875,7 +167954,7 @@
"groups": [
{
"title": "Properties",
- "children": [270]
+ "children": [342]
}
],
"sources": [
@@ -95883,14 +167962,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 339,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L339"
}
]
}
}
},
{
- "id": 271,
+ "id": 343,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95900,7 +167979,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 340,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L340"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L340"
}
],
"type": {
@@ -95912,7 +167991,7 @@
"groups": [
{
"title": "Properties",
- "children": [268, 271]
+ "children": [340, 343]
}
],
"sources": [
@@ -95920,7 +167999,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 338,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L338"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L338"
}
]
}
@@ -95928,14 +168007,14 @@
{
"type": "reflection",
"declaration": {
- "id": 272,
+ "id": 344,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 273,
+ "id": 345,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -95945,7 +168024,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 343,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L343"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L343"
}
],
"type": {
@@ -95954,7 +168033,7 @@
}
},
{
- "id": 274,
+ "id": 346,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -95964,12 +168043,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 344,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L344"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -95978,7 +168057,7 @@
"groups": [
{
"title": "Properties",
- "children": [273, 274]
+ "children": [345, 346]
}
],
"sources": [
@@ -95986,7 +168065,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 342,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L342"
}
]
}
@@ -96001,7 +168080,7 @@
]
},
{
- "id": 357,
+ "id": 429,
"name": "remove",
"variant": "declaration",
"kind": 2048,
@@ -96011,12 +168090,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
}
],
"signatures": [
{
- "id": 358,
+ "id": 430,
"name": "remove",
"variant": "signature",
"kind": 4096,
@@ -96034,12 +168113,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 661,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L661"
}
],
"parameters": [
{
- "id": 359,
+ "id": 431,
"name": "paths",
"variant": "param",
"kind": 32768,
@@ -96082,14 +168161,14 @@
{
"type": "reflection",
"declaration": {
- "id": 360,
+ "id": 432,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 361,
+ "id": 433,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -96099,21 +168178,21 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 663,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L663"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L663"
}
],
"type": {
"type": "array",
"elementType": {
"type": "reference",
- "target": 547,
+ "target": 637,
"name": "FileObject",
"package": "@supabase/storage-js"
}
}
},
{
- "id": 362,
+ "id": 434,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -96123,7 +168202,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 664,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L664"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L664"
}
],
"type": {
@@ -96135,7 +168214,7 @@
"groups": [
{
"title": "Properties",
- "children": [361, 362]
+ "children": [433, 434]
}
],
"sources": [
@@ -96143,7 +168222,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 662,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L662"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L662"
}
]
}
@@ -96151,14 +168230,14 @@
{
"type": "reflection",
"declaration": {
- "id": 363,
+ "id": 435,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 364,
+ "id": 436,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -96168,7 +168247,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 667,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L667"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L667"
}
],
"type": {
@@ -96177,7 +168256,7 @@
}
},
{
- "id": 365,
+ "id": 437,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -96187,12 +168266,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 668,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L668"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L668"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -96201,7 +168280,7 @@
"groups": [
{
"title": "Properties",
- "children": [364, 365]
+ "children": [436, 437]
}
],
"sources": [
@@ -96209,7 +168288,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 666,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L666"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L666"
}
]
}
@@ -96224,7 +168303,7 @@
]
},
{
- "id": 183,
+ "id": 255,
"name": "throwOnError",
"variant": "declaration",
"kind": 2048,
@@ -96236,12 +168315,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 67,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
}
],
"signatures": [
{
- "id": 184,
+ "id": 256,
"name": "throwOnError",
"variant": "signature",
"kind": 4096,
@@ -96259,7 +168338,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 67,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L67"
}
],
"type": {
@@ -96270,7 +168349,7 @@
]
},
{
- "id": 390,
+ "id": 462,
"name": "toBase64",
"variant": "declaration",
"kind": 2048,
@@ -96280,12 +168359,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 839,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L839"
}
],
"signatures": [
{
- "id": 391,
+ "id": 463,
"name": "toBase64",
"variant": "signature",
"kind": 4096,
@@ -96295,12 +168374,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 839,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L839"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L839"
}
],
"parameters": [
{
- "id": 392,
+ "id": 464,
"name": "data",
"variant": "param",
"kind": 32768,
@@ -96319,7 +168398,7 @@
]
},
{
- "id": 247,
+ "id": 319,
"name": "update",
"variant": "declaration",
"kind": 2048,
@@ -96329,12 +168408,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L299"
}
],
"signatures": [
{
- "id": 248,
+ "id": 320,
"name": "update",
"variant": "signature",
"kind": 4096,
@@ -96352,12 +168431,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 299,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L299"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L299"
}
],
"parameters": [
{
- "id": 249,
+ "id": 321,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -96384,7 +168463,7 @@
}
},
{
- "id": 250,
+ "id": 322,
"name": "fileBody",
"variant": "param",
"kind": 32768,
@@ -96416,21 +168495,32 @@
{
"type": "reference",
"target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "ArrayBufferView"
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "ReadableStream"
},
"typeArguments": [
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "ArrayBufferLike"
+ "qualifiedName": "Uint8Array"
},
- "name": "ArrayBufferLike",
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferLike"
+ },
+ "name": "ArrayBufferLike",
+ "package": "typescript"
+ }
+ ],
+ "name": "Uint8Array",
"package": "typescript"
}
],
- "name": "ArrayBufferView",
+ "name": "ReadableStream",
"package": "typescript"
},
{
@@ -96446,70 +168536,59 @@
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "FormData"
+ "qualifiedName": "File"
},
- "name": "FormData",
+ "name": "File",
"package": "typescript"
},
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URLSearchParams"
+ "qualifiedName": "FormData"
},
- "name": "URLSearchParams",
+ "name": "FormData",
"package": "typescript"
},
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "__global.NodeJS.ReadableStream"
+ },
+ "name": "ReadableStream",
+ "package": "@types/node",
+ "qualifiedName": "__global.NodeJS.ReadableStream"
+ },
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "File"
+ "qualifiedName": "URLSearchParams"
},
- "name": "File",
+ "name": "URLSearchParams",
"package": "typescript"
},
{
"type": "reference",
"target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "ReadableStream"
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferView"
},
"typeArguments": [
{
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Uint8Array"
+ "qualifiedName": "ArrayBufferLike"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "ArrayBufferLike"
- },
- "name": "ArrayBufferLike",
- "package": "typescript"
- }
- ],
- "name": "Uint8Array",
+ "name": "ArrayBufferLike",
"package": "typescript"
}
],
- "name": "ReadableStream",
+ "name": "ArrayBufferView",
"package": "typescript"
},
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
- "qualifiedName": "NodeJS.ReadableStream"
- },
- "name": "ReadableStream",
- "package": "@types/node",
- "qualifiedName": "NodeJS.ReadableStream"
- },
{
"type": "reference",
"target": {
@@ -96535,7 +168614,7 @@
}
},
{
- "id": 251,
+ "id": 323,
"name": "fileOptions",
"variant": "param",
"kind": 32768,
@@ -96544,7 +168623,7 @@
},
"type": {
"type": "reference",
- "target": 574,
+ "target": 664,
"name": "FileOptions",
"package": "@supabase/storage-js"
}
@@ -96563,14 +168642,14 @@
{
"type": "reflection",
"declaration": {
- "id": 252,
+ "id": 324,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 253,
+ "id": 325,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -96580,20 +168659,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 254,
+ "id": 326,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 257,
+ "id": 329,
"name": "fullPath",
"variant": "declaration",
"kind": 1024,
@@ -96603,7 +168682,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -96612,7 +168691,7 @@
}
},
{
- "id": 255,
+ "id": 327,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -96622,7 +168701,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -96631,7 +168710,7 @@
}
},
{
- "id": 256,
+ "id": 328,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -96641,7 +168720,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
],
"type": {
@@ -96653,7 +168732,7 @@
"groups": [
{
"title": "Properties",
- "children": [257, 255, 256]
+ "children": [329, 327, 328]
}
],
"sources": [
@@ -96661,14 +168740,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 315,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L315"
}
]
}
}
},
{
- "id": 258,
+ "id": 330,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -96678,7 +168757,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 316,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L316"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L316"
}
],
"type": {
@@ -96690,7 +168769,7 @@
"groups": [
{
"title": "Properties",
- "children": [253, 258]
+ "children": [325, 330]
}
],
"sources": [
@@ -96698,7 +168777,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 314,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L314"
}
]
}
@@ -96706,14 +168785,14 @@
{
"type": "reflection",
"declaration": {
- "id": 259,
+ "id": 331,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 260,
+ "id": 332,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -96723,7 +168802,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 319,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L319"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L319"
}
],
"type": {
@@ -96732,7 +168811,7 @@
}
},
{
- "id": 261,
+ "id": 333,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -96742,12 +168821,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 320,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L320"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L320"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -96756,7 +168835,7 @@
"groups": [
{
"title": "Properties",
- "children": [260, 261]
+ "children": [332, 333]
}
],
"sources": [
@@ -96764,7 +168843,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 318,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L318"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L318"
}
]
}
@@ -96779,7 +168858,7 @@
]
},
{
- "id": 201,
+ "id": 273,
"name": "upload",
"variant": "declaration",
"kind": 2048,
@@ -96789,12 +168868,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 162,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L162"
}
],
"signatures": [
{
- "id": 202,
+ "id": 274,
"name": "upload",
"variant": "signature",
"kind": 4096,
@@ -96812,12 +168891,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 162,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L162"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L162"
}
],
"parameters": [
{
- "id": 203,
+ "id": 275,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -96844,7 +168923,7 @@
}
},
{
- "id": 204,
+ "id": 276,
"name": "fileBody",
"variant": "param",
"kind": 32768,
@@ -96868,7 +168947,7 @@
}
},
{
- "id": 205,
+ "id": 277,
"name": "fileOptions",
"variant": "param",
"kind": 32768,
@@ -96877,7 +168956,7 @@
},
"type": {
"type": "reference",
- "target": 574,
+ "target": 664,
"name": "FileOptions",
"package": "@supabase/storage-js"
}
@@ -96896,14 +168975,14 @@
{
"type": "reflection",
"declaration": {
- "id": 206,
+ "id": 278,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 207,
+ "id": 279,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -96913,20 +168992,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 168,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 208,
+ "id": 280,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 211,
+ "id": 283,
"name": "fullPath",
"variant": "declaration",
"kind": 1024,
@@ -96936,7 +169015,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 168,
"character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
}
],
"type": {
@@ -96945,7 +169024,7 @@
}
},
{
- "id": 209,
+ "id": 281,
"name": "id",
"variant": "declaration",
"kind": 1024,
@@ -96955,7 +169034,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 168,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
}
],
"type": {
@@ -96964,7 +169043,7 @@
}
},
{
- "id": 210,
+ "id": 282,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -96974,7 +169053,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 168,
"character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
}
],
"type": {
@@ -96986,7 +169065,7 @@
"groups": [
{
"title": "Properties",
- "children": [211, 209, 210]
+ "children": [283, 281, 282]
}
],
"sources": [
@@ -96994,14 +169073,14 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 168,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L168"
}
]
}
}
},
{
- "id": 212,
+ "id": 284,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -97011,7 +169090,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 169,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L169"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L169"
}
],
"type": {
@@ -97023,7 +169102,7 @@
"groups": [
{
"title": "Properties",
- "children": [207, 212]
+ "children": [279, 284]
}
],
"sources": [
@@ -97031,7 +169110,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 167,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L167"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L167"
}
]
}
@@ -97039,14 +169118,14 @@
{
"type": "reflection",
"declaration": {
- "id": 213,
+ "id": 285,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 214,
+ "id": 286,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97056,7 +169135,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 172,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L172"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L172"
}
],
"type": {
@@ -97065,7 +169144,7 @@
}
},
{
- "id": 215,
+ "id": 287,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -97075,12 +169154,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 173,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L173"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L173"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -97089,7 +169168,7 @@
"groups": [
{
"title": "Properties",
- "children": [214, 215]
+ "children": [286, 287]
}
],
"sources": [
@@ -97097,7 +169176,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 171,
"character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L171"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L171"
}
]
}
@@ -97112,7 +169191,7 @@
]
},
{
- "id": 216,
+ "id": 288,
"name": "uploadToSignedUrl",
"variant": "declaration",
"kind": 2048,
@@ -97122,12 +169201,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 185,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
}
],
"signatures": [
{
- "id": 217,
+ "id": 289,
"name": "uploadToSignedUrl",
"variant": "signature",
"kind": 4096,
@@ -97153,12 +169232,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 185,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L185"
}
],
"parameters": [
{
- "id": 218,
+ "id": 290,
"name": "path",
"variant": "param",
"kind": 32768,
@@ -97185,7 +169264,7 @@
}
},
{
- "id": 219,
+ "id": 291,
"name": "token",
"variant": "param",
"kind": 32768,
@@ -97208,7 +169287,7 @@
}
},
{
- "id": 220,
+ "id": 292,
"name": "fileBody",
"variant": "param",
"kind": 32768,
@@ -97232,7 +169311,7 @@
}
},
{
- "id": 221,
+ "id": 293,
"name": "fileOptions",
"variant": "param",
"kind": 32768,
@@ -97241,7 +169320,7 @@
},
"type": {
"type": "reference",
- "target": 574,
+ "target": 664,
"name": "FileOptions",
"package": "@supabase/storage-js"
}
@@ -97260,14 +169339,14 @@
{
"type": "reflection",
"declaration": {
- "id": 222,
+ "id": 294,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 223,
+ "id": 295,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97277,20 +169356,20 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 221,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
"type": "reflection",
"declaration": {
- "id": 224,
+ "id": 296,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 226,
+ "id": 298,
"name": "fullPath",
"variant": "declaration",
"kind": 1024,
@@ -97300,7 +169379,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 221,
"character": 33,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -97310,7 +169389,7 @@
"defaultValue": "data.Key"
},
{
- "id": 225,
+ "id": 297,
"name": "path",
"variant": "declaration",
"kind": 1024,
@@ -97320,7 +169399,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 221,
"character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
],
"type": {
@@ -97333,7 +169412,7 @@
"groups": [
{
"title": "Properties",
- "children": [226, 225]
+ "children": [298, 297]
}
],
"sources": [
@@ -97341,7 +169420,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 221,
"character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L221"
}
]
}
@@ -97349,7 +169428,7 @@
"defaultValue": "..."
},
{
- "id": 227,
+ "id": 299,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -97359,7 +169438,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 222,
"character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L222"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L222"
}
],
"type": {
@@ -97372,7 +169451,7 @@
"groups": [
{
"title": "Properties",
- "children": [223, 227]
+ "children": [295, 299]
}
],
"sources": [
@@ -97380,7 +169459,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 220,
"character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L220"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L220"
}
]
}
@@ -97388,14 +169467,14 @@
{
"type": "reflection",
"declaration": {
- "id": 228,
+ "id": 300,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 229,
+ "id": 301,
"name": "data",
"variant": "declaration",
"kind": 1024,
@@ -97405,7 +169484,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 229,
"character": 17,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
}
],
"type": {
@@ -97415,7 +169494,7 @@
"defaultValue": "null"
},
{
- "id": 230,
+ "id": 302,
"name": "error",
"variant": "declaration",
"kind": 1024,
@@ -97425,12 +169504,12 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 229,
"character": 29,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
}
],
"type": {
"type": "reference",
- "target": 627,
+ "target": 724,
"name": "StorageError",
"package": "@supabase/storage-js"
}
@@ -97439,7 +169518,7 @@
"groups": [
{
"title": "Properties",
- "children": [229, 230]
+ "children": [301, 302]
}
],
"sources": [
@@ -97447,7 +169526,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 229,
"character": 15,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L229"
}
]
}
@@ -97465,13 +169544,13 @@
"groups": [
{
"title": "Constructors",
- "children": [152]
+ "children": [224]
},
{
"title": "Methods",
"children": [
- 275, 231, 288, 304, 321, 337, 346, 328, 366, 377, 262, 357, 183, 390, 247, 201,
- 216
+ 347, 303, 360, 376, 393, 409, 418, 400, 438, 449, 334, 429, 255, 462, 319, 273,
+ 288
]
}
],
@@ -97480,7 +169559,7 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 45,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L45"
}
]
}
@@ -97488,7 +169567,7 @@
"groups": [
{
"title": "Classes",
- "children": [151]
+ "children": [223]
}
],
"sources": [
@@ -97496,26 +169575,26 @@
"fileName": "packages/core/storage-js/src/packages/StorageFileApi.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StorageFileApi.ts#L1"
}
]
},
{
- "id": 402,
+ "id": 474,
"name": "packages/StreamDownloadBuilder",
"variant": "declaration",
"kind": 2,
"flags": {},
"children": [
{
- "id": 403,
+ "id": 475,
"name": "default",
"variant": "declaration",
"kind": 128,
"flags": {},
"children": [
{
- "id": 404,
+ "id": 476,
"name": "constructor",
"variant": "declaration",
"kind": 512,
@@ -97525,12 +169604,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"signatures": [
{
- "id": 405,
+ "id": 477,
"name": "default",
"variant": "signature",
"kind": 16384,
@@ -97540,12 +169619,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 5,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L5"
}
],
"parameters": [
{
- "id": 406,
+ "id": 478,
"name": "downloadFn",
"variant": "param",
"kind": 32768,
@@ -97553,7 +169632,7 @@
"type": {
"type": "reflection",
"declaration": {
- "id": 407,
+ "id": 479,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -97563,12 +169642,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"signatures": [
{
- "id": 408,
+ "id": 480,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -97578,7 +169657,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 6,
"character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L6"
}
],
"type": {
@@ -97607,7 +169686,7 @@
}
},
{
- "id": 409,
+ "id": 481,
"name": "shouldThrowOnError",
"variant": "param",
"kind": 32768,
@@ -97620,7 +169699,7 @@
],
"type": {
"type": "reference",
- "target": 403,
+ "target": 475,
"name": "StreamDownloadBuilder",
"package": "@supabase/storage-js",
"qualifiedName": "default"
@@ -97629,7 +169708,7 @@
]
},
{
- "id": 414,
+ "id": 486,
"name": "then",
"variant": "declaration",
"kind": 2048,
@@ -97639,12 +169718,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"signatures": [
{
- "id": 415,
+ "id": 487,
"name": "then",
"variant": "signature",
"kind": 4096,
@@ -97673,19 +169752,19 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 10,
"character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L10"
}
],
"typeParameters": [
{
- "id": 416,
+ "id": 488,
"name": "TResult1",
"variant": "typeParam",
"kind": 131072,
"flags": {},
"default": {
"type": "reference",
- "target": 616,
+ "target": 713,
"typeArguments": [
{
"type": "reference",
@@ -97708,7 +169787,7 @@
}
},
{
- "id": 417,
+ "id": 489,
"name": "TResult2",
"variant": "typeParam",
"kind": 131072,
@@ -97721,7 +169800,7 @@
],
"parameters": [
{
- "id": 418,
+ "id": 490,
"name": "onfulfilled",
"variant": "param",
"kind": 32768,
@@ -97746,7 +169825,7 @@
{
"type": "reflection",
"declaration": {
- "id": 419,
+ "id": 491,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -97756,12 +169835,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"signatures": [
{
- "id": 420,
+ "id": 492,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -97771,19 +169850,19 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 12,
"character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L12"
}
],
"parameters": [
{
- "id": 421,
+ "id": 493,
"name": "value",
"variant": "param",
"kind": 32768,
"flags": {},
"type": {
"type": "reference",
- "target": 616,
+ "target": 713,
"typeArguments": [
{
"type": "reference",
@@ -97811,7 +169890,7 @@
"types": [
{
"type": "reference",
- "target": 416,
+ "target": 488,
"name": "TResult1",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -97825,7 +169904,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 416,
+ "target": 488,
"name": "TResult1",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -97844,7 +169923,7 @@
}
},
{
- "id": 422,
+ "id": 494,
"name": "onrejected",
"variant": "param",
"kind": 32768,
@@ -97869,7 +169948,7 @@
{
"type": "reflection",
"declaration": {
- "id": 423,
+ "id": 495,
"name": "__type",
"variant": "declaration",
"kind": 65536,
@@ -97879,12 +169958,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"signatures": [
{
- "id": 424,
+ "id": 496,
"name": "__type",
"variant": "signature",
"kind": 4096,
@@ -97894,12 +169973,12 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 14,
"character": 18,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L14"
}
],
"parameters": [
{
- "id": 425,
+ "id": 497,
"name": "reason",
"variant": "param",
"kind": 32768,
@@ -97915,7 +169994,7 @@
"types": [
{
"type": "reference",
- "target": 417,
+ "target": 489,
"name": "TResult2",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -97929,7 +170008,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 417,
+ "target": 489,
"name": "TResult2",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -97960,14 +170039,14 @@
"types": [
{
"type": "reference",
- "target": 416,
+ "target": 488,
"name": "TResult1",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
},
{
"type": "reference",
- "target": 417,
+ "target": 489,
"name": "TResult2",
"package": "@supabase/storage-js",
"refersToTypeParameter": true
@@ -97995,11 +170074,11 @@
"groups": [
{
"title": "Constructors",
- "children": [404]
+ "children": [476]
},
{
"title": "Methods",
- "children": [414]
+ "children": [486]
}
],
"sources": [
@@ -98007,7 +170086,7 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 4,
"character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L4"
}
],
"implementedTypes": [
@@ -98020,7 +170099,7 @@
"typeArguments": [
{
"type": "reference",
- "target": 616,
+ "target": 713,
"typeArguments": [
{
"type": "reference",
@@ -98045,7 +170124,7 @@
"groups": [
{
"title": "Classes",
- "children": [403]
+ "children": [475]
}
],
"sources": [
@@ -98053,2866 +170132,5260 @@
"fileName": "packages/core/storage-js/src/packages/StreamDownloadBuilder.ts",
"line": 1,
"character": 0,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/storage-js/src/packages/StreamDownloadBuilder.ts#L1"
}
]
}
],
"groups": [
{
- "title": "Modules",
- "children": [1, 2, 46, 150, 402]
- }
- ],
- "packageName": "@supabase/storage-js",
- "readme": [
+ "title": "Modules",
+ "children": [1, 2, 46, 114, 222, 474]
+ }
+ ],
+ "packageName": "@supabase/storage-js",
+ "readme": [
+ {
+ "kind": "text",
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase Storage JS SDK \n\n JavaScript SDK to interact with Supabase Storage, including file storage and vector embeddings. \n\n \n Guides \n ·\n Reference Docs \n ·\n TypeDoc \n
\n\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/storage-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/storage-js)\n\n
\n\n## Features\n\n- **File Storage**: Upload, download, list, move, and delete files\n- **Access Control**: Public and private buckets with fine-grained permissions\n- **Signed URLs**: Generate time-limited URLs for secure file access\n- **Image Transformations**: On-the-fly image resizing and optimization\n- **Vector Embeddings**: Store and query high-dimensional embeddings with similarity search\n- **Analytics Buckets**: Iceberg table-based buckets optimized for analytical queries and data processing\n\n## Quick Start Guide\n\n### Installing the module\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\nnpm install @supabase/storage-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Connecting to the storage backend\n\nThere are two ways to use the Storage SDK:\n\n#### Option 1: Via Supabase Client (Recommended)\n\nIf you're already using "
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": ", access storage through the client:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://.supabase.co', '')\n\n// Access storage\nconst storage = supabase.storage\n\n// Access different bucket types\nconst regularBucket = storage.from('my-bucket')\nconst vectorBucket = storage.vectors.from('embeddings-bucket')\nconst analyticsBucket = storage.analytics // Analytics API\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Option 2: Standalone StorageClient\n\nFor applications that only need storage functionality:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { StorageClient } from '@supabase/storage-js'\n\nconst STORAGE_URL = 'https://.supabase.co/storage/v1'\nconst SERVICE_KEY = '' //! service key, not anon key\n\nconst storageClient = new StorageClient(STORAGE_URL, {\n apikey: SERVICE_KEY,\n Authorization: `Bearer ${SERVICE_KEY}`,\n})\n\n// Access different bucket types\nconst regularBucket = storageClient.from('my-bucket')\nconst vectorBucket = storageClient.vectors.from('embeddings-bucket')\nconst analyticsBucket = storageClient.analytics // Analytics API\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n> **When to use each approach:**\n>\n> - Use "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase.storage`"
+ },
+ {
+ "kind": "text",
+ "text": " when working with other Supabase features (auth, database, etc.)\n> - Use "
+ },
+ {
+ "kind": "code",
+ "text": "`new StorageClient()`"
+ },
+ {
+ "kind": "text",
+ "text": " for storage-only applications or when you need fine-grained control\n\n### Understanding Bucket Types\n\nSupabase Storage supports three types of buckets, each optimized for different use cases:\n\n#### 1. Regular Storage Buckets (File Storage)\n\nStandard buckets for storing files, images, videos, and other assets.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\n// Create regular storage bucket\nconst { data, error } = await storageClient.createBucket('my-files', {\n public: false,\n})\n\n// Upload files\nawait storageClient.from('my-files').upload('avatar.png', file)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Use cases:** User uploads, media assets, documents, backups\n\n#### 2. Vector Buckets (Embeddings Storage)\n\nSpecialized buckets for storing and querying high-dimensional vector embeddings.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\n// Create vector bucket\nawait storageClient.vectors.createBucket('embeddings-prod')\n\n// Create index and insert vectors\nconst bucket = storageClient.vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Use cases:** Semantic search, AI-powered recommendations, similarity matching\n\n**[See full Vector Embeddings documentation below](#vector-embeddings)**\n\n#### 3. Analytics Buckets\n\nSpecialized buckets using Apache Iceberg table format, optimized for analytical queries and large-scale data processing.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\n// Create analytics bucket\nawait storageClient.analytics.createBucket('analytics-data')\n\n// List analytics buckets\nconst { data, error } = await storageClient.analytics.listBuckets()\n\n// Delete analytics bucket\nawait storageClient.analytics.deleteBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Use cases:** Time-series data, analytical queries, data lakes, large-scale data processing, business intelligence\n\n**[See full Analytics Buckets documentation below](#analytics-buckets)**\n\n---\n\n### Handling resources\n\n#### Handling Storage Buckets\n\n- Create a new Storage bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.createBucket(\n 'test_bucket', // Bucket name (must be unique)\n { public: false } // Bucket options\n )\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Retrieve the details of an existing Storage bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.getBucket('test_bucket')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Update a new Storage bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.updateBucket(\n 'test_bucket', // Bucket name\n { public: false } // Bucket options\n )\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Remove all objects inside a single bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.emptyBucket('test_bucket')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Delete an existing bucket (a bucket can't be deleted with existing objects inside it):\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.deleteBucket('test_bucket')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Retrieve the details of all Storage buckets within an existing project:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.listBuckets()\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Handling Files\n\n- Upload a file to an existing bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const fileBody = ... // load your file here\n\n const { data, error } = await storageClient.from('bucket').upload('path/to/file', fileBody)\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n > Note: \n > The path in "
+ },
+ {
+ "kind": "code",
+ "text": "`data.Key`"
+ },
+ {
+ "kind": "text",
+ "text": " is prefixed by the bucket ID and is not the value which should be passed to the "
+ },
+ {
+ "kind": "code",
+ "text": "`download`"
+ },
+ {
+ "kind": "text",
+ "text": " method in order to fetch the file. \n > To fetch the file via the "
+ },
+ {
+ "kind": "code",
+ "text": "`download`"
+ },
+ {
+ "kind": "text",
+ "text": " method, use "
+ },
+ {
+ "kind": "code",
+ "text": "`data.path`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`data.bucketId`"
+ },
+ {
+ "kind": "text",
+ "text": " as follows:\n >\n > "
+ },
+ {
+ "kind": "code",
+ "text": "```javascript\n > const { data, error } = await storageClient.from('bucket').upload('/folder/file.txt', fileBody)\n > // check for errors\n > const { data2, error2 } = await storageClient.from(data.bucketId).download(data.path)\n > ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n > Note: The "
+ },
+ {
+ "kind": "code",
+ "text": "`upload`"
+ },
+ {
+ "kind": "text",
+ "text": " method also accepts a map of optional parameters. For a complete list see the [Supabase API reference](https://supabase.com/docs/reference/javascript/storage-from-upload).\n\n- Download a file from an exisiting bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.from('bucket').download('path/to/file')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- List all the files within a bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.from('bucket').list('folder')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n > Note: The "
+ },
+ {
+ "kind": "code",
+ "text": "`list`"
+ },
+ {
+ "kind": "text",
+ "text": " method also accepts a map of optional parameters. For a complete list see the [Supabase API reference](https://supabase.com/docs/reference/javascript/storage-from-list).\n\n- Replace an existing file at the specified path with a new one:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const fileBody = ... // load your file here\n\n const { data, error } = await storageClient\n .from('bucket')\n .update('path/to/file', fileBody)\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n > Note: The "
+ },
+ {
+ "kind": "code",
+ "text": "`upload`"
+ },
+ {
+ "kind": "text",
+ "text": " method also accepts a map of optional parameters. For a complete list see the [Supabase API reference](https://supabase.com/docs/reference/javascript/storage-from-upload).\n\n- Move an existing file:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient\n .from('bucket')\n .move('old/path/to/file', 'new/path/to/file')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Delete files within the same bucket:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.from('bucket').remove(['path/to/file'])\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Create signed URL to download file without requiring permissions:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const expireIn = 60\n\n const { data, error } = await storageClient\n .from('bucket')\n .createSignedUrl('path/to/file', expireIn)\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- Retrieve URLs for assets in public buckets:\n\n "
+ },
+ {
+ "kind": "code",
+ "text": "```js\n const { data, error } = await storageClient.from('public-bucket').getPublicUrl('path/to/file')\n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Analytics Buckets\n\nSupabase Storage provides specialized analytics buckets using Apache Iceberg table format, optimized for analytical workloads and large-scale data processing. These buckets are designed for data lake architectures, time-series data, and business intelligence applications.\n\n### What are Analytics Buckets?\n\nAnalytics buckets use the Apache Iceberg open table format, providing:\n\n- **ACID transactions** for data consistency\n- **Schema evolution** without data rewrites\n- **Time travel** to query historical data\n- **Efficient metadata management** for large datasets\n- **Optimized for analytical queries** rather than individual file operations\n\n### When to Use Analytics Buckets\n\n**Use analytics buckets for:**\n\n- Time-series data (logs, metrics, events)\n- Data lake architectures\n- Business intelligence and reporting\n- Large-scale batch processing\n- Analytical workloads requiring ACID guarantees\n\n**Use regular storage buckets for:**\n\n- User file uploads (images, documents, videos)\n- Individual file management\n- Content delivery\n- Simple object storage needs\n\n### Quick Start\n\nYou can access analytics functionality through the "
+ },
+ {
+ "kind": "code",
+ "text": "`analytics`"
+ },
+ {
+ "kind": "text",
+ "text": " property on your storage client:\n\n#### Via Supabase Client\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access analytics operations\nconst analytics = supabase.storage.analytics\n\n// Create an analytics bucket\nconst { data, error } = await analytics.createBucket('analytics-data')\nif (error) {\n console.error('Failed to create analytics bucket:', error.message)\n} else {\n console.log('Created bucket:', data.name)\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Via StorageClient\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient('https://your-project.supabase.co/storage/v1', {\n apikey: 'YOUR_API_KEY',\n Authorization: 'Bearer YOUR_TOKEN',\n})\n\n// Access analytics operations\nconst analytics = storageClient.analytics\n\n// Create an analytics bucket\nawait analytics.createBucket('analytics-data')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### API Reference\n\n#### Create Analytics Bucket\n\nCreates a new analytics bucket using Iceberg table format:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await analytics.createBucket('my-analytics-bucket')\n\nif (error) {\n console.error('Error:', error.message)\n} else {\n console.log('Created bucket:', data)\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Returns:**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n{\n data: {\n id: string\n type: 'ANALYTICS'\n format: string\n created_at: string\n updated_at: string\n } | null\n error: StorageError | null\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### List Analytics Buckets\n\nRetrieves all analytics buckets in your project with optional filtering and pagination:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await analytics.listBuckets({\n limit: 10,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n search: 'prod',\n})\n\nif (data) {\n console.log(`Found ${data.length} analytics buckets`)\n data.forEach((bucket) => {\n console.log(`- ${bucket.id} (created: ${bucket.created_at})`)\n })\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Parameters:**\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`limit?: number`"
+ },
+ {
+ "kind": "text",
+ "text": " - Maximum number of buckets to return\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`offset?: number`"
+ },
+ {
+ "kind": "text",
+ "text": " - Number of buckets to skip (for pagination)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`sortColumn?: 'id' | 'name' | 'created_at' | 'updated_at'`"
+ },
+ {
+ "kind": "text",
+ "text": " - Column to sort by\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`sortOrder?: 'asc' | 'desc'`"
+ },
+ {
+ "kind": "text",
+ "text": " - Sort direction\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`search?: string`"
+ },
+ {
+ "kind": "text",
+ "text": " - Search term to filter bucket names\n\n**Returns:**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n{\n data: AnalyticBucket[] | null\n error: StorageError | null\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Example with Pagination:**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n// Fetch first page\nconst firstPage = await analytics.listBuckets({\n limit: 100,\n offset: 0,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n})\n\n// Fetch second page\nconst secondPage = await analytics.listBuckets({\n limit: 100,\n offset: 100,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Delete Analytics Bucket\n\nDeletes an analytics bucket. The bucket must be empty before deletion.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await analytics.deleteBucket('old-analytics-bucket')\n\nif (error) {\n console.error('Failed to delete:', error.message)\n} else {\n console.log('Bucket deleted:', data.message)\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Returns:**\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n{\n data: { message: string } | null\n error: StorageError | null\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n> **Note:** A bucket cannot be deleted if it contains data. You must empty the bucket first.\n\n### Error Handling\n\nAnalytics buckets use the same error handling pattern as the rest of the Storage SDK:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await analytics.createBucket('my-bucket')\n\nif (error) {\n console.error('Error:', error.message)\n console.error('Status:', error.status)\n console.error('Status Code:', error.statusCode)\n // Handle error appropriately\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Throwing Errors\n\nYou can configure the client to throw errors instead of returning them:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst analytics = storageClient.analytics\nanalytics.throwOnError()\n\ntry {\n const { data } = await analytics.createBucket('my-bucket')\n // data is guaranteed to be present\n console.log('Success:', data)\n} catch (error) {\n if (error instanceof StorageApiError) {\n console.error('API Error:', error.statusCode, error.message)\n }\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### TypeScript Types\n\nThe library exports TypeScript types for analytics buckets:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport type { AnalyticBucket, BucketType, StorageError } from '@supabase/storage-js'\n\n// AnalyticBucket type\ninterface AnalyticBucket {\n id: string\n type: 'ANALYTICS'\n format: string\n created_at: string\n updated_at: string\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Common Patterns\n\n#### Checking if a Bucket Exists\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nasync function bucketExists(bucketName: string): Promise {\n const { data, error } = await analytics.listBuckets({\n search: bucketName,\n })\n\n if (error) {\n console.error('Error checking bucket:', error.message)\n return false\n }\n\n return data?.some((bucket) => bucket.id === bucketName) ?? false\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Creating Bucket with Error Handling\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nasync function ensureAnalyticsBucket(bucketName: string) {\n // Try to create the bucket\n const { data, error } = await analytics.createBucket(bucketName)\n\n if (error) {\n // Check if bucket already exists (conflict error)\n if (error.statusCode === '409') {\n console.log(`Bucket '${bucketName}' already exists`)\n return { success: true, created: false }\n }\n\n // Other error occurred\n console.error('Failed to create bucket:', error.message)\n return { success: false, error }\n }\n\n console.log(`Created new bucket: '${bucketName}'`)\n return { success: true, created: true, data }\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Listing All Buckets with Pagination\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nasync function getAllAnalyticsBuckets() {\n const allBuckets: AnalyticBucket[] = []\n let offset = 0\n const limit = 100\n\n while (true) {\n const { data, error } = await analytics.listBuckets({\n limit,\n offset,\n sortColumn: 'created_at',\n sortOrder: 'desc',\n })\n\n if (error) {\n console.error('Error fetching buckets:', error.message)\n break\n }\n\n if (!data || data.length === 0) {\n break\n }\n\n allBuckets.push(...data)\n\n // If we got fewer results than the limit, we've reached the end\n if (data.length < limit) {\n break\n }\n\n offset += limit\n }\n\n return allBuckets\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Vector Embeddings\n\nSupabase Storage provides built-in support for storing and querying high-dimensional vector embeddings, powered by S3 Vectors. This enables semantic search, similarity matching, and AI-powered applications without needing a separate vector database.\n\n> **Note:** Vector embeddings functionality is available in "
+ },
+ {
+ "kind": "code",
+ "text": "`@supabase/storage-js`"
+ },
+ {
+ "kind": "text",
+ "text": " v2.76 and later.\n\n### Features\n\n- **Vector Buckets**: Organize vector indexes into logical containers\n- **Vector Indexes**: Define schemas with configurable dimensions and distance metrics\n- **Batch Operations**: Insert/update/delete up to 500 vectors per request\n- **Similarity Search**: Query for nearest neighbors using cosine, euclidean, or dot product distance\n- **Metadata Filtering**: Store and filter vectors by arbitrary JSON metadata\n- **Pagination**: Efficiently scan large vector datasets\n- **Parallel Scanning**: Distribute scans across multiple workers for high throughput\n- **Cross-platform**: Works in Node.js, browsers, and edge runtimes\n\n### Quick Start\n\nYou can access vector functionality in three ways, depending on your use case:\n\n#### Option 1: Via Supabase Client (Most Common)\n\nIf you're using the full Supabase client:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { createClient } from '@supabase/supabase-js'\n\nconst supabase = createClient('https://your-project.supabase.co', 'your-anon-key')\n\n// Access vector operations through storage\nconst vectors = supabase.storage.vectors\n\n// Create a vector bucket\nawait vectors.createBucket('embeddings-prod')\n\n// Create an index\nconst bucket = vectors.from('embeddings-prod')\nawait bucket.createIndex({\n indexName: 'documents-openai',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine',\n})\n\n// Insert vectors\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n vectors: [\n {\n key: 'doc-1',\n data: { float32: [0.1, 0.2, 0.3 /* ...1536 dimensions */] },\n metadata: { title: 'Introduction', category: 'docs' },\n },\n ],\n})\n\n// Query similar vectors\nconst { data, error } = await index.queryVectors({\n queryVector: { float32: [0.15, 0.25, 0.35 /* ...1536 dimensions */] },\n topK: 5,\n returnDistance: true,\n returnMetadata: true,\n})\n\nif (data) {\n data.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n console.log('Metadata:', match.metadata)\n })\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Option 2: Via StorageClient\n\nIf you're using the standalone "
+ },
+ {
+ "kind": "code",
+ "text": "`StorageClient`"
+ },
+ {
+ "kind": "text",
+ "text": " for storage operations, access vectors through the "
+ },
+ {
+ "kind": "code",
+ "text": "`vectors`"
+ },
+ {
+ "kind": "text",
+ "text": " property:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageClient } from '@supabase/storage-js'\n\nconst storageClient = new StorageClient('https://your-project.supabase.co/storage/v1', {\n apikey: 'YOUR_API_KEY',\n Authorization: 'Bearer YOUR_TOKEN',\n})\n\n// Access vector operations\nconst vectors = storageClient.vectors\n\n// Use the same API as shown in Option 1\nawait vectors.createBucket('embeddings-prod')\nconst bucket = vectors.from('embeddings-prod')\n// ... rest of operations\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Option 3: Standalone Vector Client\n\nFor vector-only applications that don't need regular file storage operations:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\n// Initialize standalone vector client\nconst vectorClient = new StorageVectorsClient('https://your-project.supabase.co/storage/v1', {\n headers: { Authorization: 'Bearer YOUR_TOKEN' },\n})\n\n// Use the same API as shown in Option 1\nawait vectorClient.createBucket('embeddings-prod')\nconst bucket = vectorClient.from('embeddings-prod')\n// ... rest of operations\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n> **When to use each approach:**\n>\n> - **Option 1**: When using other Supabase features (auth, database, realtime)\n> - **Option 2**: When working with both file storage and vectors\n> - **Option 3**: For dedicated vector-only applications without file storage\n\n### API Reference\n\n#### Client Initialization\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst vectorClient = new StorageVectorsClient(url, options?)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Options:**\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`headers?: Record`"
+ },
+ {
+ "kind": "text",
+ "text": " - Custom HTTP headers (e.g., Authorization)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch?: Fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " - Custom fetch implementation\n\n#### Vector Buckets\n\nVector buckets are top-level containers for organizing vector indexes.\n\n##### Create Bucket\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await vectorClient.createBucket('my-bucket')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Get Bucket\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await vectorClient.getBucket('my-bucket')\nconsole.log('Created at:', new Date(data.vectorBucket.creationTime! * 1000))\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### List Buckets\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await vectorClient.listBuckets({\n prefix: 'prod-',\n maxResults: 100,\n})\n\n// Pagination\nif (data?.nextToken) {\n const next = await vectorClient.listBuckets({ nextToken: data.nextToken })\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Delete Bucket\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n// Bucket must be empty (all indexes deleted first)\nconst { error } = await vectorClient.deleteBucket('my-bucket')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Vector Indexes\n\nVector indexes define the schema for embeddings including dimension and distance metric.\n\n##### Create Index\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst bucket = vectorClient.from('my-bucket')\n\nawait bucket.createIndex({\n indexName: 'my-index',\n dataType: 'float32',\n dimension: 1536,\n distanceMetric: 'cosine', // 'cosine' | 'euclidean' | 'dotproduct'\n metadataConfiguration: {\n nonFilterableMetadataKeys: ['raw_text', 'internal_id'],\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Distance Metrics:**\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`cosine`"
+ },
+ {
+ "kind": "text",
+ "text": " - Cosine similarity (normalized dot product)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`euclidean`"
+ },
+ {
+ "kind": "text",
+ "text": " - Euclidean distance (L2 norm)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`dotproduct`"
+ },
+ {
+ "kind": "text",
+ "text": " - Dot product similarity\n\n##### Get Index\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await bucket.getIndex('my-index')\nconsole.log('Dimension:', data?.index.dimension)\nconsole.log('Distance metric:', data?.index.distanceMetric)\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### List Indexes\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await bucket.listIndexes({\n prefix: 'documents-',\n maxResults: 100,\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Delete Index\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n// Deletes index and all its vectors\nawait bucket.deleteIndex('my-index')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Vector Operations\n\n##### Insert/Update Vectors (Upsert)\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst index = vectorClient.from('my-bucket').index('my-index')\n\nawait index.putVectors({\n vectors: [\n {\n key: 'unique-id-1',\n data: {\n float32: [\n /* 1536 numbers */\n ],\n },\n metadata: {\n title: 'Document Title',\n category: 'technical',\n page: 1,\n },\n },\n // ... up to 500 vectors per request\n ],\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Limitations:**\n\n- 1-500 vectors per request\n- Vectors must match index dimension\n- Keys must be unique within index\n\n##### Get Vectors by Key\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await index.getVectors({\n keys: ['doc-1', 'doc-2', 'doc-3'],\n returnData: true, // Include embeddings\n returnMetadata: true, // Include metadata\n})\n\ndata?.vectors.forEach((v) => {\n console.log(v.key, v.metadata)\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Query Similar Vectors (ANN Search)\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await index.queryVectors({\n queryVector: {\n float32: [\n /* 1536 numbers */\n ],\n },\n topK: 10,\n filter: {\n category: 'technical',\n published: true,\n },\n returnDistance: true,\n returnMetadata: true,\n})\n\n// Results ordered by similarity\ndata?.matches.forEach((match) => {\n console.log(`${match.key}: distance=${match.distance}`)\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Filter Syntax:**\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`filter`"
+ },
+ {
+ "kind": "text",
+ "text": " parameter accepts arbitrary JSON for metadata filtering. Non-filterable keys (configured at index creation) cannot be used in filters but can still be returned.\n\n##### List/Scan Vectors\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n// Simple pagination\nlet nextToken: string | undefined\ndo {\n const { data } = await index.listVectors({\n maxResults: 500,\n nextToken,\n returnMetadata: true,\n })\n\n console.log('Batch:', data?.vectors.length)\n nextToken = data?.nextToken\n} while (nextToken)\n\n// Parallel scanning (4 workers)\nconst workers = [0, 1, 2, 3].map(async (segmentIndex) => {\n const { data } = await index.listVectors({\n segmentCount: 4,\n segmentIndex,\n returnMetadata: true,\n })\n return data?.vectors || []\n})\n\nconst results = await Promise.all(workers)\nconst allVectors = results.flat()\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n**Limitations:**\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`maxResults`"
+ },
+ {
+ "kind": "text",
+ "text": ": 1-1000 (default: 500)\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`segmentCount`"
+ },
+ {
+ "kind": "text",
+ "text": ": 1-16\n- Response may be limited by 1MB size\n\n##### Delete Vectors\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nawait index.deleteVectors({\n keys: ['doc-1', 'doc-2', 'doc-3'],\n // ... up to 500 keys per request\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Error Handling\n\nThe library uses a consistent error handling pattern:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst { data, error } = await vectorClient.createBucket('my-bucket')\n\nif (error) {\n console.error('Error:', error.message)\n console.error('Status:', error.status)\n console.error('Code:', error.statusCode)\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Error Codes\n\n| Code | HTTP | Description |\n| ---------------------------- | ---- | ----------------------- |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`InternalError`"
+ },
+ {
+ "kind": "text",
+ "text": " | 500 | Internal server error |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorConflictException`"
+ },
+ {
+ "kind": "text",
+ "text": " | 409 | Resource already exists |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorNotFoundException`"
+ },
+ {
+ "kind": "text",
+ "text": " | 404 | Resource not found |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorBucketNotEmpty`"
+ },
+ {
+ "kind": "text",
+ "text": " | 400 | Bucket contains indexes |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorMaxBucketsExceeded`"
+ },
+ {
+ "kind": "text",
+ "text": " | 400 | Bucket quota exceeded |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`S3VectorMaxIndexesExceeded`"
+ },
+ {
+ "kind": "text",
+ "text": " | 400 | Index quota exceeded |\n\n#### Throwing Errors\n\nYou can configure the client to throw errors instead:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nconst vectorClient = new StorageVectorsClient(url, options)\nvectorClient.throwOnError()\n\ntry {\n const { data } = await vectorClient.createBucket('my-bucket')\n // data is guaranteed to be present\n} catch (error) {\n if (error instanceof StorageVectorsApiError) {\n console.error('API Error:', error.statusCode)\n }\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Advanced Usage\n\n#### Scoped Clients\n\nCreate scoped clients for cleaner code:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\n// Bucket-scoped operations\nconst bucket = vectorClient.from('embeddings-prod')\nawait bucket.createIndex({\n /* ... */\n})\nawait bucket.listIndexes()\n\n// Index-scoped operations\nconst index = bucket.index('documents-openai')\nawait index.putVectors({\n /* ... */\n})\nawait index.queryVectors({\n /* ... */\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Custom Fetch\n\nProvide a custom fetch implementation:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { StorageVectorsClient } from '@supabase/storage-js'\n\nconst vectorClient = new StorageVectorsClient(url, {\n fetch: customFetch,\n headers: {\n /* ... */\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Batch Processing\n\nProcess large datasets in batches:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nasync function insertLargeDataset(vectors: VectorObject[]) {\n const batchSize = 500\n\n for (let i = 0; i < vectors.length; i += batchSize) {\n const batch = vectors.slice(i, i + batchSize)\n await index.putVectors({ vectors: batch })\n console.log(`Inserted ${i + batch.length}/${vectors.length}`)\n }\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Float32 Validation\n\nEnsure vectors are properly normalized to float32:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport { normalizeToFloat32 } from '@supabase/storage-js'\n\nconst vector = normalizeToFloat32([0.1, 0.2, 0.3 /* ... */])\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Type Definitions\n\nThe library exports comprehensive TypeScript types:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```typescript\nimport type {\n VectorBucket,\n VectorIndex,\n VectorData,\n VectorObject,\n VectorMatch,\n VectorMetadata,\n DistanceMetric,\n ApiResponse,\n StorageVectorsError,\n} from '@supabase/storage-js'\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n#### Build Scripts Overview\n\nThe storage-js package uses multiple build scripts to generate different module formats for various JavaScript environments:\n\n| Script | Description | Output |\n| -------------- | --------------------------- | --------------------------------------------------------------- |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`build`"
+ },
+ {
+ "kind": "text",
+ "text": " | **Complete build pipeline** | Runs all build steps in sequence |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`build:main`"
+ },
+ {
+ "kind": "text",
+ "text": " | **CommonJS build** | "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/main/`"
+ },
+ {
+ "kind": "text",
+ "text": " - Node.js compatible CommonJS modules |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`build:module`"
+ },
+ {
+ "kind": "text",
+ "text": " | **ES Modules build** | "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/module/`"
+ },
+ {
+ "kind": "text",
+ "text": " - Modern ES6 modules with TypeScript definitions |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`build:umd`"
+ },
+ {
+ "kind": "text",
+ "text": " | **UMD build** | "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/umd/`"
+ },
+ {
+ "kind": "text",
+ "text": " - Universal Module Definition for browsers/CDN |\n| "
+ },
+ {
+ "kind": "code",
+ "text": "`clean`"
+ },
+ {
+ "kind": "text",
+ "text": " | **Clean build artifacts** | Removes "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`docs/v2/`"
+ },
+ {
+ "kind": "text",
+ "text": " directories |\n\n#### Running Builds\n\n##### Complete Build (Recommended)\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# From the monorepo root\nnpx nx build storage-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThis command executes the full build pipeline:\n\n1. **Cleans** - Removes any existing build artifacts\n2. **Formats** - Ensures consistent code formatting\n3. **Builds CommonJS** - For Node.js environments ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/main/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n4. **Builds ES Modules** - For modern bundlers ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/module/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n5. **Builds UMD** - For browser script tags ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/umd/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n\n##### Development Build with Watch Mode\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# Continuously rebuild on file changes (from monorepo root)\nnpx nx build storage-js --watch\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Individual Build Targets\n\nFor specific build outputs during development:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# Build CommonJS only (Node.js)\nnpx nx build:main storage-js\n\n# Build ES Modules only (Modern bundlers)\nnpx nx build:module storage-js\n\n# Build UMD only (Browser/CDN)\nnpx nx build:umd storage-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n##### Other Useful Commands\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# Clean build artifacts\nnpx nx clean storage-js\n\n# Format code\nnpx nx format storage-js\n\n# Type checking\nnpx nx typecheck storage-js\n\n# Generate documentation\nnpx nx docs storage-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Build Outputs Explained\n\n##### CommonJS ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/main/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n\n- **Used by:** Node.js applications, older build tools\n- **Entry point:** "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/main/index.js`"
+ },
+ {
+ "kind": "text",
+ "text": "\n- **Module format:** "
+ },
+ {
+ "kind": "code",
+ "text": "`require()`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`module.exports`"
+ },
+ {
+ "kind": "text",
+ "text": "\n- **TypeScript definitions:** Included\n\n##### ES Modules ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/module/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n\n- **Used by:** Modern bundlers (Webpack, Rollup, Vite)\n- **Entry point:** "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/module/index.js`"
+ },
+ {
+ "kind": "text",
+ "text": "\n- **Module format:** "
+ },
+ {
+ "kind": "code",
+ "text": "`import`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`export`"
+ },
+ {
+ "kind": "text",
+ "text": "\n- **TypeScript definitions:** "
+ },
+ {
+ "kind": "code",
+ "text": "`dist/module/index.d.ts`"
+ },
+ {
+ "kind": "text",
+ "text": "\n- **Benefits:** Tree-shaking, better static analysis\n\n##### UMD ("
+ },
+ {
+ "kind": "code",
+ "text": "`dist/umd/`"
+ },
+ {
+ "kind": "text",
+ "text": ")\n\n- **Used by:** Browser "
+ },
+ {
+ "kind": "code",
+ "text": "`\n \n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ },
+ {
+ "kind": "code",
+ "text": "`\n \n ```"
+ "432": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ "433": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type.data"
},
- {
- "kind": "code",
- "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ "434": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type.error"
},
- {
- "kind": "text",
- "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ "435": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`\n \n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ },
+ {
+ "kind": "code",
+ "text": "`\n \n ```"
+ "417": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type.error"
},
- {
- "kind": "text",
- "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ "418": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "default.getPublicUrl"
},
- {
- "kind": "code",
- "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ "419": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "default.getPublicUrl"
},
- {
- "kind": "text",
- "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ "420": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "path"
},
- {
- "kind": "code",
- "text": "`\n \n ```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ },
+ {
+ "kind": "code",
+ "text": "`\n \n ```"
+ "417": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "__type.error"
},
- {
- "kind": "text",
- "text": "\n\n#### Package Exports\n\nThe package.json exports are configured to provide the right format for each environment:\n\n"
+ "418": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "default.getPublicUrl"
},
- {
- "kind": "code",
- "text": "```json\n{\n \"main\": \"dist/main/index.js\",\n \"module\": \"dist/module/index.js\",\n \"types\": \"dist/module/index.d.ts\",\n \"jsdelivr\": \"dist/umd/supabase.js\",\n \"unpkg\": \"dist/umd/supabase.js\"\n}\n```"
+ "419": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "default.getPublicUrl"
},
- {
- "kind": "text",
- "text": "\n\n- **main** → Node.js environments (CommonJS format)\n- **module** → Modern bundlers like Webpack, Vite, Rollup (ES Modules)\n- **types** → TypeScript type definitions\n- **jsdelivr/unpkg** → CDN usage via "
+ "420": {
+ "sourceFileName": "src/packages/StorageFileApi.ts",
+ "qualifiedName": "path"
},
- {
- "kind": "code",
- "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nor even:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThen you can use it from a global "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase`"
+ },
+ {
+ "kind": "text",
+ "text": " variable:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### ESM\n\nYou can use "
+ },
+ {
+ "kind": "code",
+ "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Custom "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " uses the ["
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation can be provided as an option. This is most useful in environments where "
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " is not compatible, for instance Cloudflare Workers:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
+ },
+ {
+ "kind": "code",
+ "text": "`stable`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`lts`"
+ },
+ {
+ "kind": "text",
+ "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Testing\n\nThere's a complete guide on how to set up your environment for running locally the "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " integration tests. Please refer to [TESTING.md]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "./TESTING.md",
+ "target": 2
+ },
+ {
+ "kind": "text",
+ "text": ").\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "../../../CONTRIBUTING.md",
+ "target": 3
+ },
+ {
+ "kind": "text",
+ "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
+ }
+ ],
+ "symbolIdMap": {
+ "0": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": ""
+ },
+ "1": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "2": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "3": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "Database"
+ },
+ "4": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaNameOrClientOptions"
+ },
+ "5": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type"
+ },
+ "6": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "7": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "8": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "9": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "10": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "options"
+ },
+ "11": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "12": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.id"
+ },
+ "13": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.app_metadata"
+ },
+ "14": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.user_metadata"
+ },
+ "15": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.aud"
+ },
+ "16": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmation_sent_at"
+ },
+ "17": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.recovery_sent_at"
+ },
+ "18": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_change_sent_at"
+ },
+ "19": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_email"
+ },
+ "20": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_phone"
+ },
+ "21": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.invited_at"
+ },
+ "22": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.action_link"
+ },
+ "23": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email"
+ },
+ "24": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone"
+ },
+ "25": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.created_at"
+ },
+ "26": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmed_at"
+ },
+ "27": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_confirmed_at"
+ },
+ "28": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone_confirmed_at"
+ },
+ "29": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.last_sign_in_at"
+ },
+ "30": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.role"
+ },
+ "31": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.updated_at"
+ },
+ "32": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.identities"
+ },
+ "33": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_anonymous"
+ },
+ "34": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_sso_user"
+ },
+ "35": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.factors"
+ },
+ "36": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.deleted_at"
+ },
+ "37": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "38": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_token"
+ },
+ "39": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_refresh_token"
+ },
+ "40": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.access_token"
+ },
+ "41": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.refresh_token"
+ },
+ "42": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_in"
+ },
+ "43": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_at"
+ },
+ "44": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.token_type"
+ },
+ "45": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.user"
+ },
+ "46": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponse"
+ },
+ "47": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "48": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestSingleResponse"
+ },
+ "49": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "50": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestMaybeSingleResponse"
+ },
+ "51": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "52": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "53": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "54": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "55": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "context"
+ },
+ "56": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type"
+ },
+ "57": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.message"
+ },
+ "58": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.details"
+ },
+ "59": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.hint"
+ },
+ "60": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.code"
+ },
+ "61": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.details"
+ },
+ "62": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.hint"
+ },
+ "63": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.code"
+ },
+ "64": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "65": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError.__constructor"
+ },
+ "66": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "67": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "68": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "69": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "70": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError.__constructor"
+ },
+ "71": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "72": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "73": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "74": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "75": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError.__constructor"
+ },
+ "76": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "77": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "78": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "79": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "80": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.__constructor"
+ },
+ "81": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "82": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "message"
+ },
+ "83": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "name"
+ },
+ "84": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "85": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "86": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionInvokeOptions"
+ },
+ "87": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "88": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "89": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "90": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "92": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.method"
+ },
+ "93": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.region"
+ },
+ "94": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.body"
+ },
+ "95": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.signal"
+ },
+ "96": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion"
+ },
+ "97": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.Any"
+ },
+ "98": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast1"
+ },
+ "99": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast2"
+ },
+ "100": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSouth1"
+ },
+ "101": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast1"
+ },
+ "102": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast2"
+ },
+ "103": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.CaCentral1"
+ },
+ "104": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuCentral1"
+ },
+ "105": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest1"
+ },
+ "106": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest2"
+ },
+ "107": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest3"
+ },
+ "108": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.SaEast1"
+ },
+ "109": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsEast1"
+ },
+ "110": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest1"
+ },
+ "111": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest2"
+ },
+ "112": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "113": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "114": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "115": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "116": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "117": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "118": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "119": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "120": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "121": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "122": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "123": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "124": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "125": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "126": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "127": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "128": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "129": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "130": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "131": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "132": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "133": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "134": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "135": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.auth"
+ },
+ "136": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtime"
+ },
+ "137": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "138": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtimeUrl"
+ },
+ "139": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.authUrl"
+ },
+ "140": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageUrl"
+ },
+ "141": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functionsUrl"
+ },
+ "142": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rest"
+ },
+ "143": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "144": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "146": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "147": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "148": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "149": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "150": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "151": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "152": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.changedAccessToken"
+ },
+ "153": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.accessToken"
+ },
+ "154": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "155": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "156": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "157": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseUrl"
+ },
+ "158": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseKey"
+ },
+ "159": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "160": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "161": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "162": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "163": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "TableName"
+ },
+ "164": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Table"
+ },
+ "165": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "166": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "167": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "ViewName"
+ },
+ "168": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "View"
+ },
+ "169": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "170": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "171": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "172": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "DynamicSchema"
+ },
+ "173": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "schema"
+ },
+ "174": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "175": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "176": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FnName"
+ },
+ "177": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Args"
+ },
+ "178": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FilterBuilder"
+ },
+ "179": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "fn"
+ },
+ "180": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "args"
+ },
+ "181": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "182": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "183": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.head"
+ },
+ "184": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.get"
+ },
+ "185": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.count"
+ },
+ "186": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "187": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "188": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "name"
+ },
+ "189": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "opts"
+ },
+ "190": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "191": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "192": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "193": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "194": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "channel"
+ },
+ "195": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "196": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "225": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "226": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "227": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "228": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "229": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "230": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "231": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "232": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "233": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "234": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "235": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "236": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "237": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "238": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "239": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "240": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "241": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "242": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseClientOptions"
+ },
+ "243": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "244": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.db"
+ },
+ "245": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "246": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.schema"
+ },
+ "247": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.auth"
+ },
+ "248": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "249": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "250": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "251": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "252": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "253": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "254": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "255": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "256": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "257": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "258": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.realtime"
+ },
+ "259": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "260": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.global"
+ },
+ "261": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "262": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "263": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "264": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.accessToken"
+ },
+ "265": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "266": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "267": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "268": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryResult"
+ },
+ "269": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "270": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryData"
+ },
+ "271": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "272": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "273": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "274": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryError"
+ },
+ "275": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "276": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "277": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "278": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__0"
+ },
+ "279": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "280": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.url"
+ },
+ "281": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "282": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "283": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "285": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "286": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "287": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "288": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "289": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "290": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "291": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "292": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "293": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "294": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "295": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.url"
+ },
+ "296": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.headers"
+ },
+ "297": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "298": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "300": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "301": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "302": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "303": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "304": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "305": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "306": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "307": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "308": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "309": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "310": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "jwt"
+ },
+ "311": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "scope"
+ },
+ "312": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "313": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "314": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "315": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "316": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "317": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "email"
+ },
+ "318": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "options"
+ },
+ "319": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "320": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "321": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "322": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "323": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "324": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "325": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "326": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "327": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "328": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "329": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "330": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "331": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "332": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "333": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "334": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "335": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "336": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "337": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "338": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "339": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "340": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "341": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "342": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "343": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "344": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "345": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "346": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "347": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "348": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "349": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "350": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "351": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "id"
+ },
+ "352": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "shouldSoftDelete"
+ },
+ "361": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "363": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "364": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "365": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "367": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.admin"
+ },
+ "368": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "369": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "370": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "371": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.flowType"
+ },
+ "372": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "373": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "374": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "375": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "376": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "377": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "378": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "379": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "380": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "381": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "382": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "383": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "384": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshToken"
+ },
+ "385": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.persistSession"
+ },
+ "386": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "387": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.userStorage"
+ },
+ "388": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.memoryStorage"
+ },
+ "389": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "390": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "392": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stateChangeEmitters"
+ },
+ "393": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshTicker"
+ },
+ "394": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.visibilityChangedCallback"
+ },
+ "395": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "396": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "397": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshingDeferred"
+ },
+ "398": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initializePromise"
+ },
+ "399": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.detectSessionInUrl"
+ },
+ "400": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.url"
+ },
+ "401": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "402": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "403": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "405": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.hasCustomAuthorizationHeader"
+ },
+ "406": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.suppressGetSessionWarning"
+ },
+ "407": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "408": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "409": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "410": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "411": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "412": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "413": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "414": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "415": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lock"
+ },
+ "416": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lockAcquired"
+ },
+ "417": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.pendingInLock"
+ },
+ "418": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.broadcastChannel"
+ },
+ "419": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logDebugMessages"
+ },
+ "420": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logger"
+ },
+ "421": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "422": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "423": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "message"
+ },
+ "424": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "args"
+ },
+ "426": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "427": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "429": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "430": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "431": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "432": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "433": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "434": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "435": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "436": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "437": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "438": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "439": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "440": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "441": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "442": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "443": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "authCode"
+ },
+ "444": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "445": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "446": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "447": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "448": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "449": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "450": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "451": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "452": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "453": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "454": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "455": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "456": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "457": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "458": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "462": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "463": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "464": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "465": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "466": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "467": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "468": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "469": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "470": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "471": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "472": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "473": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "474": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "475": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "477": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "478": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "479": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "480": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "481": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "482": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "483": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "484": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "485": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "486": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "487": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "488": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "489": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "490": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "491": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "492": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "493": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "494": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "495": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "496": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "500": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "501": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "502": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "504": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "505": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "506": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "507": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "508": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "509": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "510": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "511": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "512": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "513": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "514": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "515": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "516": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "517": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "518": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "519": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "520": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "521": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "522": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "523": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "524": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "525": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "526": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "527": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "528": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "529": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "530": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "531": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "532": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "533": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "534": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "535": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "536": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "537": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "541": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "542": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "543": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "544": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "545": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "546": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "547": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "548": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__0"
+ },
+ "549": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "550": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "551": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "552": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "553": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "554": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "555": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "556": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "557": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "558": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "559": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "560": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "561": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "562": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "563": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "564": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "565": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "566": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "567": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "568": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "569": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "570": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "571": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "573": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "574": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "575": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "email"
+ },
+ "576": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "577": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "578": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "579": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "580": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "581": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "582": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "583": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "584": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "585": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "586": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "587": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "588": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "589": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "590": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "591": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "592": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.identities"
+ },
+ "593": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "594": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "595": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "596": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "597": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "598": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "599": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "600": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "601": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "604": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "605": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "606": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "identity"
+ },
+ "607": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "608": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "609": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "610": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "611": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "612": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "613": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "625": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "626": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "627": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "628": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "644": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "645": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "646": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "647": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "648": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "649": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "650": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.allowExpired"
+ },
+ "651": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.jwks"
+ },
+ "652": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "653": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "654": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "655": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "656": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "657": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.claims"
+ },
+ "658": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.header"
+ },
+ "659": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "660": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "661": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "662": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "663": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "664": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "665": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "666": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "667": {
+ "sourceFileName": "../auth-js/src/AuthAdminApi.ts",
+ "qualifiedName": "AuthAdminApi"
+ },
+ "668": {
+ "sourceFileName": "../auth-js/src/AuthClient.ts",
+ "qualifiedName": "AuthClient"
+ },
+ "669": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "670": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "671": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "672": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "673": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "674": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "675": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "676": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "677": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "678": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.__constructor"
+ },
+ "679": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "680": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "message"
+ },
+ "681": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
+ },
+ "682": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "internals"
+ },
+ "683": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "684": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "685": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "686": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "687": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "688": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "689": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "690": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "691": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "692": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "693": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Provider"
+ },
+ "694": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEventMFA"
+ },
+ "695": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEvent"
+ },
+ "696": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "LockFunc"
+ },
+ "697": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "698": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "699": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "name"
+ },
+ "700": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "701": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "fn"
+ },
+ "702": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "703": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "704": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "R"
+ },
+ "705": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueClientOptions"
+ },
+ "706": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "707": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "708": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "709": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "710": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "712": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "713": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "714": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "715": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "716": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "717": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "718": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "719": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "720": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "721": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "722": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "723": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "724": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "args"
+ },
+ "725": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "726": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hasCustomAuthorizationHeader"
+ },
+ "727": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPasswordReasons"
+ },
+ "728": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPassword"
+ },
+ "729": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "730": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.reasons"
+ },
+ "731": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "732": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Prettify"
+ },
+ "733": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "734": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "StrictOmit"
+ },
+ "735": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "736": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "737": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResult"
+ },
+ "738": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "739": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "740": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "741": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "742": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "743": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "744": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "745": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ErrorType"
+ },
+ "746": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResultSafeDestructure"
+ },
+ "747": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "748": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "749": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "750": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "751": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "752": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "753": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "754": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponse"
+ },
+ "755": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "756": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "757": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "758": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponsePassword"
+ },
+ "759": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "760": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "761": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "762": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weak_password"
+ },
+ "763": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOtpResponse"
+ },
+ "764": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "765": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "766": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "767": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.messageId"
+ },
+ "768": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponse"
+ },
+ "769": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "770": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "771": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "772": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponsePassword"
+ },
+ "773": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "774": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "775": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "776": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weakPassword"
+ },
+ "777": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthResponse"
+ },
+ "778": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "779": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "780": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "781": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "782": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "783": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "784": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "785": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "786": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "787": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "788": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "789": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "790": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SSOResponse"
+ },
+ "791": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "792": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "793": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserResponse"
+ },
+ "794": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "795": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "796": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "797": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMRMethod"
+ },
+ "798": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "799": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry"
+ },
+ "800": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.method"
+ },
+ "801": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.timestamp"
+ },
+ "802": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity"
+ },
+ "803": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.id"
+ },
+ "804": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.user_id"
+ },
+ "805": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_data"
+ },
+ "806": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "807": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "809": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_id"
+ },
+ "810": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.provider"
+ },
+ "811": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.created_at"
+ },
+ "812": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.last_sign_in_at"
+ },
+ "813": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.updated_at"
+ },
+ "814": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorType"
+ },
+ "815": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Factor"
+ },
+ "816": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "817": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "818": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.friendly_name"
+ },
+ "819": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factor_type"
+ },
+ "820": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.status"
+ },
+ "821": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "822": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "823": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Type"
+ },
+ "824": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Status"
+ },
+ "825": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata"
+ },
+ "826": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.provider"
+ },
+ "827": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.__index"
+ },
+ "829": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata"
+ },
+ "830": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata.__index"
+ },
+ "832": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "833": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes"
+ },
+ "834": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.email"
+ },
+ "835": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.phone"
+ },
+ "836": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.password"
+ },
+ "837": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.nonce"
+ },
+ "838": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.data"
+ },
+ "839": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes"
+ },
+ "840": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.user_metadata"
+ },
+ "841": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.app_metadata"
+ },
+ "842": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.email_confirm"
+ },
+ "843": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
+ },
+ "844": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.ban_duration"
+ },
+ "845": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.role"
+ },
+ "846": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.password_hash"
+ },
+ "847": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.id"
+ },
+ "848": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "nonce"
+ },
+ "849": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "email"
+ },
+ "850": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "password"
+ },
+ "851": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "852": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription"
+ },
+ "853": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.id"
+ },
+ "854": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.callback"
+ },
+ "855": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "856": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "857": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "event"
+ },
+ "858": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "session"
+ },
+ "859": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.unsubscribe"
+ },
+ "860": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "861": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "862": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInAnonymouslyCredentials"
+ },
+ "863": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "864": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "865": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "866": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "867": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "868": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignUpWithPasswordCredentials"
+ },
+ "869": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "870": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "871": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "872": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "873": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "874": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "875": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "876": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordCredentials"
+ },
+ "877": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "878": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "879": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "880": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "881": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordlessCredentials"
+ },
+ "882": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "883": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "884": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "885": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "886": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "887": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "888": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "889": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "890": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "891": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "892": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "893": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "894": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "895": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "896": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "897": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "898": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthFlowType"
+ },
+ "899": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithOAuthCredentials"
+ },
+ "900": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "901": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "902": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "903": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "904": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "905": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scopes"
+ },
+ "906": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.queryParams"
+ },
+ "907": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "908": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "910": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "911": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithIdTokenCredentials"
+ },
+ "912": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "913": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "914": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "915": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token"
+ },
+ "916": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "917": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nonce"
+ },
+ "918": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "919": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "920": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "921": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWallet"
+ },
+ "922": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "923": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signIn"
+ },
+ "924": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "925": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "926": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "inputs"
+ },
+ "927": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "928": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "929": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.toBase58"
+ },
+ "930": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "931": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "932": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signMessage"
+ },
+ "933": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "934": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "935": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "936": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "encoding"
+ },
+ "937": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWeb3Credentials"
+ },
+ "938": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "939": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "940": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "941": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "942": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "943": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "944": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "945": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "946": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithSolana"
+ },
+ "947": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "948": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "949": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "950": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "951": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "952": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "953": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "954": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWallet"
+ },
+ "955": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWeb3Credentials"
+ },
+ "956": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "957": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "958": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "959": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "960": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "961": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "962": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "963": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "964": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithEthereum"
+ },
+ "965": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "966": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "967": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "968": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "969": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "970": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "971": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "972": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Web3Credentials"
+ },
+ "973": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyOtpParams"
+ },
+ "974": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams"
+ },
+ "975": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.phone"
+ },
+ "976": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.token"
+ },
+ "977": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.type"
+ },
+ "978": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.options"
+ },
+ "979": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "980": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "981": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "982": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams"
+ },
+ "983": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.email"
+ },
+ "984": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.token"
+ },
+ "985": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.type"
+ },
+ "986": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.options"
+ },
+ "987": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "988": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "989": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "990": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams"
+ },
+ "991": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
+ },
+ "992": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.type"
+ },
+ "993": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MobileOtpType"
+ },
+ "994": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EmailOtpType"
+ },
+ "995": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ResendParams"
+ },
+ "996": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "997": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "998": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "999": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1000": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1001": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "1002": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1003": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1004": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1005": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "1006": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1007": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1008": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1009": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithSSO"
+ },
+ "1010": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1011": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.providerId"
+ },
+ "1012": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1013": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1014": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1015": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1016": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1017": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.domain"
+ },
+ "1018": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1019": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1020": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1021": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1022": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateSignupLinkParams"
+ },
+ "1023": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1024": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1025": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1026": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.password"
+ },
+ "1027": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1028": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ },
+ "1029": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1030": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1031": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1032": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1033": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateRecoveryLinkParams"
+ },
+ "1034": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1035": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1036": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1037": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1038": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateEmailChangeLinkParams"
+ },
+ "1039": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1040": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1041": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1042": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.newEmail"
+ },
+ "1043": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1044": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions"
+ },
+ "1045": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.data"
+ },
+ "1046": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
+ },
+ "1047": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkParams"
+ },
+ "1048": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkResponse"
+ },
+ "1049": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1050": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.properties"
+ },
+ "1051": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1052": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkProperties"
+ },
+ "1053": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1054": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.action_link"
+ },
+ "1055": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email_otp"
+ },
+ "1056": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hashed_token"
+ },
+ "1057": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_to"
+ },
+ "1058": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.verification_type"
+ },
+ "1059": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkType"
+ },
+ "1060": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParams"
+ },
+ "1061": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAUnenrollParams"
+ },
+ "1062": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1063": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factorId"
+ },
+ "1064": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyTOTPParams"
+ },
+ "1065": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyPhoneParams"
+ },
+ "1066": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
+ },
+ "1067": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1068": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.webauthn"
+ },
+ "1069": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1070": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParams"
+ },
+ "1071": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1072": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParams"
+ },
+ "1073": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFATOTPChannel"
+ },
+ "1074": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeTOTPParams"
+ },
+ "1075": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengePhoneParams"
+ },
+ "1076": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeWebauthnParams"
+ },
+ "1077": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParams"
+ },
+ "1078": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeAndVerifyParams"
+ },
+ "1079": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponseData"
+ },
+ "1080": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1081": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "1082": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_type"
+ },
+ "1083": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.expires_in"
+ },
+ "1084": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "1085": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1086": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponse"
+ },
+ "1087": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponse"
+ },
+ "1088": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAUnenrollResponse"
+ },
+ "1089": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1090": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1091": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ },
+ "1092": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
+ },
+ "1093": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ },
+ "1094": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ },
+ "1095": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ },
+ "1096": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponse"
+ },
+ "1097": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAListFactorsResponse"
+ },
+ "1098": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1099": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.all"
+ },
+ "1100": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1101": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthenticatorAssuranceLevels"
+ },
+ "1102": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ },
+ "1103": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1104": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentLevel"
+ },
+ "1105": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextLevel"
+ },
+ "1106": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentAuthenticationMethods"
+ },
+ "1107": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi"
+ },
+ "1108": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1109": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1110": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1111": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1112": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1113": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1114": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "issuer"
+ },
+ "1115": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1116": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1117": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1118": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1119": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1120": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "1121": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1122": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1123": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1124": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1125": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1126": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1127": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1128": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1129": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1130": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1131": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1132": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1133": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1134": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1135": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1136": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1137": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1138": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1139": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1140": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1141": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1142": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1143": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1144": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1145": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1146": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1147": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "channel"
+ },
+ "1148": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1149": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1150": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1151": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1152": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1153": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1154": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1155": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1156": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1157": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1158": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1159": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1160": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1161": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1162": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1163": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1164": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpId"
+ },
+ "1165": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpOrigins"
+ },
+ "1166": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1167": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1168": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1169": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1170": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1171": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1172": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1173": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1174": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1175": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1176": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1177": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1178": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1179": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1180": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1181": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1182": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1183": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1184": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1185": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1186": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1187": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1188": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1189": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1190": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1191": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1192": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1193": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1194": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1195": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1196": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1197": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1198": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1199": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1200": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1201": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1202": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1203": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1204": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1205": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1206": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1207": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1208": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1209": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1210": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1211": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1212": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1213": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1214": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1215": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1216": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1217": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1218": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1219": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1220": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1221": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1222": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1223": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.webauthn"
+ },
+ "1224": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ },
+ "1225": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1226": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1227": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ },
+ "1228": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1229": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1230": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1231": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ },
+ "1232": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1233": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factors"
+ },
+ "1234": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
+ },
+ "1235": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1236": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1237": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi"
+ },
+ "1238": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1239": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1240": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1241": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1242": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1243": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1244": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SupportedStorage"
+ },
+ "1245": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1246": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.isServer"
+ },
+ "1247": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "InitializeResult"
+ },
+ "1248": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1249": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1250": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
+ },
+ "1251": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Pagination"
+ },
+ "1252": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1253": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextPage"
+ },
+ "1254": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lastPage"
+ },
+ "1255": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1256": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1258": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PageParams"
+ },
+ "1259": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1260": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.page"
+ },
+ "1261": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.perPage"
+ },
+ "1262": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOut"
+ },
+ "1263": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1264": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1265": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollTOTPParams"
+ },
+ "1266": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollPhoneParams"
+ },
+ "1267": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollWebauthnParams"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ },
+ "1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ },
+ "1270": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ },
+ "1271": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtHeader"
+ },
+ "1272": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1273": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.alg"
+ },
+ "1274": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.kid"
+ },
+ "1275": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.typ"
+ },
+ "1276": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequiredClaims"
+ },
+ "1277": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1278": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iss"
+ },
+ "1279": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.sub"
+ },
+ "1280": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1281": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.exp"
+ },
+ "1282": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iat"
+ },
+ "1283": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.role"
+ },
+ "1284": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aal"
+ },
+ "1285": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session_id"
+ },
+ "1286": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtPayload"
+ },
+ "1287": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1288": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1290": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK"
+ },
+ "1291": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kty"
+ },
+ "1292": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.key_ops"
+ },
+ "1293": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.alg"
+ },
+ "1294": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kid"
+ },
+ "1295": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.__index"
+ },
+ "1297": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SIGN_OUT_SCOPES"
+ },
+ "1298": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOutScope"
+ },
+ "1299": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientGrantType"
+ },
+ "1300": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponseType"
+ },
+ "1301": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientType"
+ },
+ "1302": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientRegistrationType"
+ },
+ "1303": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClient"
+ },
+ "1304": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1305": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1306": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1307": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_secret"
+ },
+ "1308": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_type"
+ },
+ "1309": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_endpoint_auth_method"
+ },
+ "1310": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.registration_type"
+ },
+ "1311": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1312": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1313": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1314": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1315": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1316": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1317": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "1318": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "1319": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CreateOAuthClientParams"
+ },
+ "1320": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1321": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1322": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1323": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1324": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1325": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1326": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1327": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UpdateOAuthClientParams"
+ },
+ "1328": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1329": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1330": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1331": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1332": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1333": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1334": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponse"
+ },
+ "1335": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientListResponse"
+ },
+ "1336": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1337": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1338": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1339": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1340": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1341": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1342": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1343": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1344": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1345": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1346": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1347": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi"
+ },
+ "1348": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1349": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1350": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1351": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1352": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1353": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1354": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1355": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1356": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1357": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1358": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1359": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1360": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1361": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1362": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1363": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1364": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1365": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1366": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1367": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1368": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1369": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1370": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationClient"
+ },
+ "1371": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1372": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1373": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1374": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1375": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1376": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationDetails"
+ },
+ "1377": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1378": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.authorization_id"
+ },
+ "1379": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uri"
+ },
+ "1380": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client"
+ },
+ "1381": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1382": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1383": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1384": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1385": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1386": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ },
+ "1387": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthConsentResponse"
+ },
+ "1388": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1389": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_url"
+ },
+ "1390": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi"
+ },
+ "1391": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1392": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1393": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1394": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1395": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1396": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1397": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1398": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1399": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1400": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1401": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1402": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1403": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1404": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1405": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1406": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1407": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1408": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1409": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1410": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1411": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1412": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1413": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1414": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1415": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1416": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1417": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1418": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1419": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1420": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1421": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1422": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1423": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1424": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1425": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__constructor"
+ },
+ "1426": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1427": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1428": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1429": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1430": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1431": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1432": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1433": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.__constructor"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.status"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1442": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.__constructor"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "originalError"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.originalError"
+ },
+ "1450": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1451": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1452": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1453": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1454": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1455": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.__constructor"
+ },
+ "1456": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1457": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1458": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "name"
+ },
+ "1459": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1460": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1461": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1462": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1463": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1464": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1465": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1466": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1467": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError.__constructor"
+ },
+ "1468": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1469": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1470": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1471": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1472": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1473": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1474": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1475": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError.__constructor"
+ },
+ "1476": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1477": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1478": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1479": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1480": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1481": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1482": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1483": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError.__constructor"
+ },
+ "1484": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1485": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1486": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1487": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1488": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1489": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1490": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1491": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1492": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
+ },
+ "1493": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1494": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1495": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1496": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1497": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1498": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1499": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.details"
+ },
+ "1500": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1501": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1502": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1503": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1504": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1505": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1506": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1507": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1508": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1509": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1510": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1511": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1512": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1513": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1514": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1515": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1516": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1517": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1518": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1519": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
+ },
+ "1520": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1521": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1522": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1523": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1524": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1525": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1526": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
+ },
+ "1527": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1528": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1529": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1530": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1531": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1532": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1533": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1534": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1535": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1536": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1537": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1538": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1539": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1540": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1541": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1542": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1543": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1544": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1545": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1546": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError.__constructor"
+ },
+ "1547": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1548": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1549": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1550": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1551": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1552": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1553": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1554": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1555": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1556": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.__constructor"
+ },
+ "1557": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1558": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1559": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1560": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "reasons"
+ },
+ "1561": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.reasons"
+ },
+ "1562": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1563": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1564": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1565": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1566": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1567": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1568": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError.__constructor"
+ },
+ "1569": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1570": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1571": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1572": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1573": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1574": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1575": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1576": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1577": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1578": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1579": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "channel"
+ },
+ "1580": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "opts"
+ },
+ "1581": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.channel"
+ },
+ "1582": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.state"
+ },
+ "1583": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.pendingDiffs"
+ },
+ "1584": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.joinRef"
+ },
+ "1585": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.enabled"
+ },
+ "1586": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.caller"
+ },
+ "1587": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1588": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onJoin"
+ },
+ "1589": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onLeave"
+ },
+ "1590": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onSync"
+ },
+ "1591": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1592": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1593": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1594": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1595": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1596": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "topic"
+ },
+ "1597": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "params"
+ },
+ "1598": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "socket"
+ },
+ "1599": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.topic"
+ },
+ "1600": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.params"
+ },
+ "1601": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.socket"
+ },
+ "1602": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.bindings"
+ },
+ "1603": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1604": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1606": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1607": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1608": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
+ },
+ "1609": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1610": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1612": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.callback"
+ },
+ "1613": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1614": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.timeout"
+ },
+ "1615": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.state"
+ },
+ "1616": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinedOnce"
+ },
+ "1617": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinPush"
+ },
+ "1618": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.rejoinTimer"
+ },
+ "1619": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.pushBuffer"
+ },
+ "1620": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presence"
+ },
+ "1621": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.broadcastEndpointURL"
+ },
+ "1622": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subTopic"
+ },
+ "1623": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.private"
+ },
+ "1624": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1625": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1626": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1627": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1628": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1629": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "status"
+ },
+ "1630": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "err"
+ },
+ "1631": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1632": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1633": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1634": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1635": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1636": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1638": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1639": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1640": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1641": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1642": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1643": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1645": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1646": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1647": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1649": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1650": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1651": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1652": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1653": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1655": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1656": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1657": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1658": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1659": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1660": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1661": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1662": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1663": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1664": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1665": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1666": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1667": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1669": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1670": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1671": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1672": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1673": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1674": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1675": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1676": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1677": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1678": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1679": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1680": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1682": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1683": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1684": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1685": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1686": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1687": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1688": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1689": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1690": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1691": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1692": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1693": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1695": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1696": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1697": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1698": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1699": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1700": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1701": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1702": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1703": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1704": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1706": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1707": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1708": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1709": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1710": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1711": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1712": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1713": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1714": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1715": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1717": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1718": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1719": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1720": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1721": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1722": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1723": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1724": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1725": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1726": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1728": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1729": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1730": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
},
- {
- "title": "Type Aliases",
- "children": [166, 170, 164, 138]
+ "1731": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- {
- "title": "Functions",
- "children": [1]
- }
- ],
- "packageName": "@supabase/supabase-js",
- "readme": [
- {
- "kind": "text",
- "text": "# "
+ "1732": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`supabase-js`"
+ "1733": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
},
- {
- "kind": "text",
- "text": " - Isomorphic JavaScript Client for Supabase.\n\n- **Documentation:** https://supabase.com/docs/reference/javascript/start\n- TypeDoc: https://supabase.github.io/supabase-js/supabase-js/v2/spec.json\n\n\n\n[](https://pkg.pr.new/~/supabase/supabase-js)\n\n
\n\n## Usage\n\nFirst of all, you need to install the library:\n\n"
+ "1734": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1735": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1736": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1737": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1738": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1739": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1740": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1741": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1742": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1743": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1744": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1745": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1746": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1747": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1748": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1749": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1750": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1752": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1753": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1754": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1755": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1757": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1758": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1759": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1760": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1761": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1762": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1763": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1764": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1765": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1766": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1767": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1768": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1769": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1770": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1771": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1772": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1773": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1774": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1775": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1776": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1777": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1778": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1779": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1780": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1781": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1782": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1783": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1784": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1785": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1786": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1787": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1788": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1789": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1790": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1792": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1793": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1794": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1795": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1796": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1797": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1798": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1799": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1800": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1801": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1802": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1803": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1804": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1805": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1806": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1807": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1809": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1810": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1811": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1812": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1813": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1814": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1815": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1816": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1817": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1818": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1819": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1820": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1821": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1822": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1823": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1824": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1826": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1827": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1828": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1829": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1830": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1831": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1832": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1833": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1834": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1835": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1836": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1837": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1838": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1839": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1840": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1841": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1843": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1844": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1845": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1846": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1847": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1848": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1849": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1850": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1851": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1852": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1853": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1854": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1855": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1856": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1857": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1858": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1859": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1860": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1861": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1862": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1863": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1864": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1865": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "args"
+ },
+ "1866": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1867": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1868": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1869": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1870": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1872": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1873": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1874": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1876": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1877": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1878": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1879": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1880": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1882": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1883": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1884": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1886": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelOptions"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1889": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.config"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.broadcast"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.self"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.ack"
+ },
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replay"
+ },
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.presence"
+ },
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.key"
+ },
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.enabled"
+ },
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.private"
+ },
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelSendResponse"
+ },
+ "1902": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
+ },
+ "1903": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1904": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
+ },
+ "1905": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "endPoint"
+ },
+ "1906": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "options"
+ },
+ "1907": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessTokenValue"
+ },
+ "1908": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.apiKey"
+ },
+ "1909": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channels"
+ },
+ "1910": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endPoint"
+ },
+ "1911": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.httpEndpoint"
+ },
+ "1912": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "1913": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "1914": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1916": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.params"
+ },
+ "1917": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "1918": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1920": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.timeout"
+ },
+ "1921": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.transport"
+ },
+ "1922": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatIntervalMs"
+ },
+ "1923": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatTimer"
+ },
+ "1924": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.pendingHeartbeatRef"
},
- {
- "kind": "code",
- "text": "```sh\nnpm install @supabase/supabase-js\n```"
+ "1925": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatCallback"
},
- {
- "kind": "text",
- "text": "\n\nThen you're able to import the library and establish the connection with the database:\n\n"
+ "1926": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Create a single supabase client for interacting with your database\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\n```"
+ "1927": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n### UMD\n\nYou can use plain "
+ "1928": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "code",
- "text": "`\n```"
+ "1931": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logger"
},
- {
- "kind": "text",
- "text": "\n\nor even:\n\n"
+ "1932": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logLevel"
},
- {
- "kind": "code",
- "text": "```html\n\n```"
+ "1933": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.encode"
},
- {
- "kind": "text",
- "text": "\n\nThen you can use it from a global "
+ "1934": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.decode"
},
- {
- "kind": "code",
- "text": "`supabase`"
+ "1935": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.reconnectAfterMs"
},
- {
- "kind": "text",
- "text": " variable:\n\n"
+ "1936": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.conn"
},
- {
- "kind": "code",
- "text": "```html\n\n```"
+ "1937": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendBuffer"
},
- {
- "kind": "text",
- "text": "\n\n### ESM\n\nYou can use "
+ "1938": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.serializer"
},
- {
- "kind": "code",
- "text": "`\n```"
+ "1941": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.open"
},
- {
- "kind": "text",
- "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
+ "1942": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.close"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
+ "1943": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.error"
},
- {
- "kind": "text",
- "text": "\n\n### Custom "
+ "1944": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.message"
},
- {
- "kind": "code",
- "text": "`fetch`"
+ "1945": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.fetch"
},
- {
- "kind": "text",
- "text": " implementation\n\n"
+ "1946": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "code",
- "text": "`supabase-js`"
+ "1947": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "text",
- "text": " uses the ["
+ "1948": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
},
- {
- "kind": "code",
- "text": "`cross-fetch`"
+ "1949": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
},
- {
- "kind": "text",
- "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
+ "1950": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "code",
- "text": "`fetch`"
+ "1951": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
},
- {
- "kind": "text",
- "text": " implementation can be provided as an option. This is most useful in environments where "
+ "1952": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
},
- {
- "kind": "code",
- "text": "`cross-fetch`"
+ "1953": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessToken"
},
- {
- "kind": "text",
- "text": " is not compatible, for instance Cloudflare Workers:\n\n"
+ "1954": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
+ "1955": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
+ "1956": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.worker"
},
- {
- "kind": "code",
- "text": "`stable`"
+ "1957": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerUrl"
},
- {
- "kind": "text",
- "text": " and "
+ "1958": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerRef"
},
- {
- "kind": "code",
- "text": "`lts`"
+ "1962": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- {
- "kind": "text",
- "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
+ "1963": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- {
- "kind": "code",
- "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
+ "1964": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- {
- "kind": "text",
- "text": "\n\n### Testing\n\n**Important:** The test suite includes tests for multiple runtime environments (Node.js, Deno, Bun, Expo, Next.js). Each environment has its own test runner and specific requirements.\n\n#### Prerequisites for All Integration Tests\n\n1. **Docker** must be installed and running\n2. **Supabase CLI** must be installed ("
+ "1965": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- {
- "kind": "code",
- "text": "`npm install -g supabase`"
+ "1966": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- {
- "kind": "text",
- "text": " or via package manager)\n3. **Local Supabase instance** must be started:\n\n"
+ "1967": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- {
- "kind": "code",
- "text": "```bash\n# Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# Start Supabase (downloads and starts all required containers)\nnpx supabase start\n\n# The output will show:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Studio URL: http://127.0.0.1:54323\n# - Anon key: [your-anon-key]\n# - Service role key: [your-service-role-key] # Important for some tests!\n\n# Return to monorepo root for running tests\ncd ../../..\n```"
+ "1968": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "code"
},
- {
- "kind": "text",
- "text": "\n\n#### Test Scripts Overview\n\n| Script | Description | Requirements |\n| -------------------------- | ----------------------------------------- | --------------------------------------- |\n| "
+ "1969": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "reason"
},
- {
- "kind": "code",
- "text": "`test`"
+ "1970": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
},
- {
- "kind": "text",
- "text": " | Runs unit tests + type checking | None |\n| "
+ "1971": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
},
- {
- "kind": "code",
- "text": "`test:all`"
+ "1972": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
},
- {
- "kind": "text",
- "text": " | Unit + integration + browser tests | Supabase running |\n| "
+ "1973": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
},
- {
- "kind": "code",
- "text": "`test:run`"
+ "1974": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "channel"
},
- {
- "kind": "text",
- "text": " | Jest unit tests only | None |\n| "
+ "1975": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
},
- {
- "kind": "code",
- "text": "`test:unit`"
+ "1976": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
},
- {
- "kind": "text",
- "text": " | Jest unit tests in test/unit directory | None |\n| "
+ "1977": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
},
- {
- "kind": "code",
- "text": "`test:coverage`"
+ "1978": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
},
- {
- "kind": "text",
- "text": " | Unit tests with coverage report | None |\n| "
+ "1979": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "kind"
},
- {
- "kind": "code",
- "text": "`test:integration`"
+ "1980": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "msg"
},
- {
- "kind": "text",
- "text": " | Node.js integration tests | Supabase running + SERVICE_ROLE_KEY |\n| "
+ "1981": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
},
- {
- "kind": "code",
- "text": "`test:integration:browser`"
+ "1982": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
},
- {
- "kind": "text",
- "text": " | Browser tests using Deno + Puppeteer | Supabase running + Deno installed |\n| "
+ "1983": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
},
- {
- "kind": "code",
- "text": "`test:edge-functions`"
+ "1984": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
},
- {
- "kind": "text",
- "text": " | Edge Functions tests | Supabase running + Deno installed |\n| "
+ "1985": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
},
- {
- "kind": "code",
- "text": "`test:types`"
+ "1986": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
},
- {
- "kind": "text",
- "text": " | TypeScript type checking + JSR validation | None |\n| "
+ "1987": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
},
- {
- "kind": "code",
- "text": "`test:deno`"
+ "1988": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
},
- {
- "kind": "text",
- "text": " | Deno runtime compatibility tests | Supabase running + Deno installed |\n| "
+ "1989": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
},
- {
- "kind": "code",
- "text": "`test:bun`"
+ "1990": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
},
- {
- "kind": "text",
- "text": " | Bun runtime compatibility tests | Supabase running + Bun installed |\n| Expo (see section below) | React Native/Expo tests | Supabase running + dependencies updated |\n| Next.js (see below) | Next.js SSR tests | Supabase running + dependencies updated |\n| "
+ "1991": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
},
- {
- "kind": "code",
- "text": "`test:node:playwright`"
+ "1992": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "topic"
},
- {
- "kind": "text",
- "text": " | WebSocket browser tests | Supabase running + Playwright |\n\n#### Unit Testing\n\n"
+ "1993": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "params"
},
- {
- "kind": "code",
- "text": "```bash\n# Run all unit tests (Jest)\nnpx nx test supabase-js\n\n# Run only unit tests in test/unit directory\nnpx nx test:unit supabase-js\n\n# Run tests in watch mode during development\nnpx nx test supabase-js --watch\n\n# Run tests with coverage report\nnpx nx test:coverage supabase-js\n```"
+ "1994": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
},
- {
- "kind": "text",
- "text": "\n\n#### Integration Testing\n\n"
+ "1995": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites: Start Supabase first (see above)\n\n# Run Node.js integration tests\n# IMPORTANT: Requires SUPABASE_SERVICE_ROLE_KEY environment variable\ncd packages/core/supabase-js\nexport SUPABASE_SERVICE_ROLE_KEY=\"$(npx supabase status --output json | jq -r '.SERVICE_ROLE_KEY')\"\ncd ../../..\nnpx nx test:integration supabase-js\n\n# Run browser-based integration tests (requires Deno)\nnpx nx test:integration:browser supabase-js\n```"
+ "1996": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
},
- {
- "kind": "text",
- "text": "\n\n#### Running All Tests\n\n"
+ "1997": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
},
- {
- "kind": "code",
- "text": "```bash\n# This runs type checking, unit tests, and integration tests sequentially\n# NOTE: Will fail if Supabase is not running or dependencies not updated\nnpx nx test:all supabase-js\n```"
+ "1998": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
},
- {
- "kind": "text",
- "text": "\n\n**Common Issues and Solutions:**\n\n| Issue | Solution |\n| -------------------------------------------- | --------------------------------------------------------------- |\n| \"Cannot find module 'https://deno.land/...'\" | Deno tests incorrectly run by Jest - check "
+ "1999": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "token"
},
- {
- "kind": "code",
- "text": "`jest.config.ts`"
+ "2000": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
},
- {
- "kind": "text",
- "text": " |\n| \"Port 54322 already allocated\" | Stop existing Supabase: "
+ "2001": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
},
- {
- "kind": "code",
- "text": "`npx supabase stop --project-id `"
+ "2002": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
},
- {
- "kind": "text",
- "text": " |\n| \"503 Service Unavailable\" for Edge Functions | Supabase not running - start with "
+ "2003": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
},
- {
- "kind": "code",
- "text": "`npx supabase start`"
+ "2004": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "callback"
},
- {
- "kind": "text",
- "text": " |\n| \"Uncommitted changes\" during type check | Commit changes or add "
+ "2005": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`--allow-dirty`"
+ "2006": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": " to JSR publish |\n| Integration tests fail with auth errors | Export "
+ "2007": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "code",
- "text": "`SUPABASE_SERVICE_ROLE_KEY`"
+ "2008": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- {
- "kind": "text",
- "text": " (see Integration Testing) |\n\n### Platform-Specific Testing\n\n#### Expo Testing (React Native)\n\n"
+ "2009": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:expo supabase-js\n\n# Run Expo tests from the Expo test project\ncd packages/core/supabase-js/test/integration/expo\nnpm install\nnpm test\ncd ../../..\n```"
+ "2011": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeClientOptions"
},
- {
- "kind": "text",
- "text": "\n\n#### Next.js Testing (SSR)\n\n"
+ "2012": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:next supabase-js\n\n# 3. Install Playwright browsers and dependencies\nnpx playwright install --with-deps\n\n# Run Next.js tests from the Next test project\ncd packages/core/supabase-js/test/integration/next\nnpm install --legacy-peer-deps\nnpm run test\ncd ../../..\n```"
+ "2013": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.transport"
},
- {
- "kind": "text",
- "text": "\n\n#### Deno Testing\n\n"
+ "2014": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.timeout"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Deno must be installed (https://deno.land)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:deno supabase-js\n\n# Run Deno tests\nnpx nx test:deno supabase-js\n```"
+ "2015": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatIntervalMs"
},
- {
- "kind": "text",
- "text": "\n\n### Edge Functions Testing\n\nThe project includes Edge Functions integration tests that require a local Supabase instance to be running.\n\n"
+ "2016": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatCallback"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Ensure Docker is installed and running\n# 2. Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# 3. Start Supabase locally (this will download and start all required containers)\nnpx supabase start\n\n# Wait for the output showing all services are ready, including:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Edge Runtime container\n\n# 4. Run the Edge Functions tests from the monorepo root\ncd ../../../ # Back to monorepo root\nnpx nx test:edge-functions supabase-js\n```"
+ "2017": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n**Important Notes:**\n\n- The Edge Functions tests will fail with 503 errors if Supabase is not running\n- If you encounter port conflicts (e.g., \"port 54322 already allocated\"), stop any existing Supabase instances:\n\n "
+ "2018": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n npx supabase stop --project-id \n # Or stop all Docker containers if unsure:\n docker ps | grep supabase # List all Supabase containers\n ```"
+ "2019": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "text",
- "text": "\n\n- The tests use the default local development credentials (anon key)\n- Edge Functions are automatically served when "
+ "2020": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logger"
},
- {
- "kind": "code",
- "text": "`supabase start`"
+ "2021": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.encode"
+ },
+ "2022": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.decode"
},
- {
- "kind": "text",
- "text": " is run\n\n#### Bun Testing\n\n"
+ "2023": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.reconnectAfterMs"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Bun must be installed (https://bun.sh)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:bun supabase-js\n\n# Run Bun tests\nnpx nx test:bun supabase-js\n```"
+ "2024": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.headers"
},
- {
- "kind": "text",
- "text": "\n\n#### WebSocket Browser Testing\n\n"
+ "2025": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Build the UMD bundle first:\nnpx nx build supabase-js\n\n# Run WebSocket browser tests with Playwright\ncd packages/core/supabase-js/test/integration/node-browser\nnpm install\ncp ../../../dist/umd/supabase.js .\nnpm run test\ncd ../../..\n```"
+ "2026": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "text",
- "text": "\n\n#### CI/CD Testing\n\nWhen running on CI, the tests automatically use the latest dependencies from the root project. The CI pipeline:\n\n1. Builds the main project with current dependencies\n2. Creates a package archive ("
+ "2028": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.params"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2029": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": ") with the latest versions\n3. Uses this archive in Expo, Next.js, Deno, and Bun tests to ensure consistency\n\n### Updating Test Dependencies\n\nThe platform-specific tests (Expo, Next.js, Deno, Bun) use a packaged version of supabase-js rather than directly importing from source. This ensures they test the actual built package as it would be consumed by users.\n\n#### How It Works\n\n1. **Build** the current supabase-js package\n2. **Pack** it into a "
+ "2030": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2032": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.log_level"
},
- {
- "kind": "text",
- "text": " file (like "
+ "2033": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logLevel"
},
- {
- "kind": "code",
- "text": "`npm pack`"
+ "2034": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.fetch"
},
- {
- "kind": "text",
- "text": " does)\n3. **Copy** the "
+ "2035": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.worker"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2036": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.workerUrl"
},
- {
- "kind": "text",
- "text": " to the test directory\n4. **Install** it in the test project\n\nThis mimics how real users would install and use the package.\n\n#### Update Scripts\n\n"
+ "2037": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.accessToken"
},
- {
- "kind": "code",
- "text": "```bash\n# Update ALL test environment dependencies at once\n# This builds, packs, and installs in all test directories\nnpx nx update:test-deps supabase-js\n\n# Or update specific test environments:\nnpx nx update:test-deps:expo supabase-js # Expo/React Native only\nnpx nx update:test-deps:next supabase-js # Next.js only\nnpx nx update:test-deps:deno supabase-js # Deno only\nnpx nx update:test-deps:bun supabase-js # Bun only\n```"
+ "2038": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n**When to Update:**\n\n- After making changes to the source code\n- Before running platform-specific tests locally\n- When debugging test failures that might be due to stale dependencies\n\n**Note:** CI automatically handles this, so manual updates are only needed for local development.\n\n### Test Coverage\n\n#### Viewing Coverage Reports\n\n"
+ "2039": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Generate coverage report\nnpx nx test:coverage supabase-js\n\n# Serve coverage report locally (opens interactive HTML report)\nnpx nx serve:coverage supabase-js\n# This starts a local server at http://localhost:3000 with the coverage report\n```"
+ "2040": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeMessage"
},
- {
- "kind": "text",
- "text": "\n\nThe coverage report shows:\n\n- Line coverage\n- Branch coverage\n- Function coverage\n- Uncovered lines with highlights\n\nCoverage results are also automatically uploaded to Coveralls in CI for tracking over time.\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "2041": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "relative-link",
- "text": "../../../CONTRIBUTING.md",
- "target": 2
+ "2042": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.topic"
},
- {
- "kind": "text",
- "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
- }
- ],
- "symbolIdMap": {
- "0": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": ""
+ "2043": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.event"
},
- "1": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "2044": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.payload"
},
- "2": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "2045": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.ref"
},
- "3": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "Database"
+ "2046": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.join_ref"
},
- "4": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaNameOrClientOptions"
+ "2047": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesFilter"
},
- "5": {
- "sourceFileName": "src/index.ts",
+ "2048": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "6": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2049": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
},
- "7": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaName"
+ "2050": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.schema"
},
- "8": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseUrl"
+ "2051": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.table"
},
- "9": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseKey"
+ "2052": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
},
- "10": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "options"
+ "2053": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "11": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "2054": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayload"
},
- "12": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.__constructor"
+ "2055": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "13": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "2056": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "14": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "2057": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "15": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "2059": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresInsertPayload"
},
- "16": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2060": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "17": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
- },
- "18": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2061": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "19": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2062": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
},
- "20": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2063": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
},
- "21": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2064": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "22": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2065": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "23": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2066": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "24": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2067": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "25": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2069": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresUpdatePayload"
+ },
+ "2070": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "26": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2071": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "27": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2072": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
+ },
+ "2073": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
+ },
+ "2074": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2075": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "28": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2076": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "29": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2078": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresDeletePayload"
+ },
+ "2079": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "30": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2080": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "31": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseUrl"
+ "2081": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
},
- "32": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseKey"
+ "2082": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "33": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2083": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
},
- "34": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.auth"
+ "2084": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "35": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtime"
+ "2085": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "36": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storage"
+ "2086": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "37": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtimeUrl"
+ "2088": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceJoinPayload"
},
- "38": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.authUrl"
+ "2089": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "39": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageUrl"
+ "2090": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
},
- "40": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functionsUrl"
+ "2091": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
},
- "41": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rest"
+ "2092": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
},
- "42": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageKey"
+ "2093": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.newPresences"
},
- "43": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.fetch"
+ "2094": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "44": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2095": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "45": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2096": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "46": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "input"
+ "2098": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceLeavePayload"
},
- "47": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "init"
+ "2099": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "48": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "fetch"
+ "2100": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
},
- "49": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "input"
+ "2101": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
},
- "50": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "init"
+ "2102": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
},
- "51": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.changedAccessToken"
+ "2103": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.leftPresences"
},
- "52": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.accessToken"
+ "2104": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "53": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2105": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "54": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2106": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2108": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceState"
+ },
+ "2109": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "55": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.headers"
+ "2110": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "56": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseUrl"
+ "2112": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "57": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseKey"
+ "2113": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "58": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2114": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "59": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2116": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "60": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2117": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeRemoveChannelResponse"
},
- "61": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2118": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "62": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "TableName"
+ "2119": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
+ },
+ "2120": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
+ },
+ "2121": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "63": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Table"
+ "2122": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "64": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2123": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "65": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2124": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "66": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "ViewName"
+ "2125": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "67": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "View"
+ "2126": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "68": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2127": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "69": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2128": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "70": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2129": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "71": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "DynamicSchema"
+ "2130": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "72": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "schema"
+ "2131": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "73": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2132": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "74": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2133": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "75": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FnName"
+ "2134": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "76": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Args"
+ "2135": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "77": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FilterBuilder"
+ "2136": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "78": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "fn"
+ "2137": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "79": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "args"
+ "2138": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory"
},
- "80": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2140": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "81": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2141": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
+ },
+ "2142": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "82": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.head"
+ "2143": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "__type"
},
- "83": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.get"
+ "2144": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "url"
},
- "84": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.count"
+ "2145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "protocols"
},
- "85": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2146": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "86": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2147": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "87": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "name"
+ "2148": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "url"
},
- "88": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "opts"
+ "2149": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "protocols"
},
- "89": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2150": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "90": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2151": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "91": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2154": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike"
},
- "92": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2155": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CONNECTING"
},
- "93": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "channel"
+ "2156": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.OPEN"
},
- "94": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2157": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSING"
},
- "95": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2158": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSED"
},
- "121": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "2159": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.readyState"
},
- "122": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "2160": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.url"
},
- "123": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2161": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.protocol"
},
- "124": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2162": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "125": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2163": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "126": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2164": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "code"
},
- "127": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2165": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "reason"
},
- "128": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2166": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "129": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2167": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "130": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2168": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "data"
},
- "131": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2169": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onopen"
},
- "132": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2170": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "133": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
- },
- "134": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2171": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "135": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2172": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "136": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2173": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "137": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2174": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onmessage"
},
- "138": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseClientOptions"
+ "2175": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "139": {
- "sourceFileName": "src/lib/types.ts",
+ "2176": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "140": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.db"
+ "2177": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "141": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2178": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "142": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.schema"
+ "2179": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onclose"
},
- "143": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.auth"
+ "2180": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "144": {
- "sourceFileName": "src/lib/types.ts",
+ "2181": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "145": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.autoRefreshToken"
+ "2182": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "146": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storageKey"
+ "2183": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "147": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.persistSession"
+ "2184": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onerror"
},
- "148": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.detectSessionInUrl"
+ "2185": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "149": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2186": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "150": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userStorage"
+ "2187": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "151": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.flowType"
+ "2188": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "152": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.debug"
+ "2189": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "153": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lock"
+ "2190": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "154": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.realtime"
+ "2191": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "155": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2192": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "156": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.global"
+ "2193": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "157": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2194": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "158": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.fetch"
+ "2195": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "159": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.headers"
+ "2196": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "160": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.accessToken"
+ "2197": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.binaryType"
},
- "161": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2198": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.bufferedAmount"
},
- "162": {
- "sourceFileName": "src/lib/types.ts",
+ "2199": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.extensions"
+ },
+ "2200": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.dispatchEvent"
+ },
+ "2201": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "163": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SchemaName"
+ "2202": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "164": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryResult"
+ "2203": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "event"
},
- "165": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2204": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "166": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryData"
+ "2205": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "167": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2206": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "168": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "2207": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "address"
},
- "169": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2208": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "subprotocols"
},
- "170": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryError"
+ "2209": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor.__index"
}
},
"files": {
"entries": {
"1": "src/index.ts",
- "2": "../../../CONTRIBUTING.md"
+ "2": "TESTING.md",
+ "3": "../../../CONTRIBUTING.md"
},
"reflections": {
"1": 0
diff --git a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
index f41b9716d38d6..359b6d13d6fec 100644
--- a/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
+++ b/apps/docs/spec/enrichments/tsdoc_v2/supabase_dereferenced.json
@@ -6,741 +6,1272 @@
"flags": {},
"children": [
{
- "id": 11,
- "name": "SupabaseClient",
+ "id": 96,
+ "name": "FunctionRegion",
"variant": "declaration",
- "kind": 128,
+ "kind": 8,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Supabase Client.\n\nAn isomorphic Javascript client for interacting with Postgres."
+ "children": [
+ {
+ "id": 97,
+ "name": "Any",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 30,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "any"
}
- ]
- },
+ },
+ {
+ "id": 98,
+ "name": "ApNortheast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 31,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-northeast-1"
+ }
+ },
+ {
+ "id": 99,
+ "name": "ApNortheast2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-northeast-2"
+ }
+ },
+ {
+ "id": 100,
+ "name": "ApSouth1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 33,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-south-1"
+ }
+ },
+ {
+ "id": 101,
+ "name": "ApSoutheast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-southeast-1"
+ }
+ },
+ {
+ "id": 102,
+ "name": "ApSoutheast2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ap-southeast-2"
+ }
+ },
+ {
+ "id": 103,
+ "name": "CaCentral1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ca-central-1"
+ }
+ },
+ {
+ "id": 104,
+ "name": "EuCentral1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 37,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-central-1"
+ }
+ },
+ {
+ "id": 105,
+ "name": "EuWest1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-1"
+ }
+ },
+ {
+ "id": 106,
+ "name": "EuWest2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-2"
+ }
+ },
+ {
+ "id": 107,
+ "name": "EuWest3",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 40,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "eu-west-3"
+ }
+ },
+ {
+ "id": 108,
+ "name": "SaEast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 41,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sa-east-1"
+ }
+ },
+ {
+ "id": 109,
+ "name": "UsEast1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 42,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-east-1"
+ }
+ },
+ {
+ "id": 110,
+ "name": "UsWest1",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 43,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-west-1"
+ }
+ },
+ {
+ "id": 111,
+ "name": "UsWest2",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 44,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "us-west-2"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 29,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2118,
+ "name": "REALTIME_LISTEN_TYPES",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
"children": [
{
- "id": 12,
- "name": "constructor",
+ "id": 2119,
+ "name": "BROADCAST",
"variant": "declaration",
- "kind": 512,
+ "kind": 16,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 105,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 123,
+ "character": 4
}
],
- "signatures": [
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 2121,
+ "name": "POSTGRES_CHANGES",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
{
- "id": 13,
- "name": "SupabaseClient",
- "variant": "signature",
- "kind": 16384,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Create a new client for use in the browser."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 105,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L105"
- }
- ],
- "typeParameters": [
- {
- "id": 14,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "default": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- {
- "id": 15,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 16,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 17,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [17]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ]
- }
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 125,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 2120,
+ "name": "PRESENCE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 124,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 2122,
+ "name": "SYSTEM",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2119, 2121, 2120, 2122]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 122,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2123,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2124,
+ "name": "ALL",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "*"
+ }
+ },
+ {
+ "id": 2127,
+ "name": "DELETE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 120,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ },
+ {
+ "id": 2125,
+ "name": "INSERT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 118,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ },
+ {
+ "id": 2126,
+ "name": "UPDATE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 119,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2124, 2127, 2125, 2126]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 116,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2128,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2130,
+ "name": "JOIN",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 31,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ },
+ {
+ "id": 2131,
+ "name": "LEAVE",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ },
+ {
+ "id": 2129,
+ "name": "SYNC",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 30,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2130, 2131, 2129]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 29,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 2132,
+ "name": "REALTIME_SUBSCRIBE_STATES",
+ "variant": "declaration",
+ "kind": 8,
+ "flags": {},
+ "children": [
+ {
+ "id": 2136,
+ "name": "CHANNEL_ERROR",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 132,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CHANNEL_ERROR"
+ }
+ },
+ {
+ "id": 2135,
+ "name": "CLOSED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 131,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "CLOSED"
+ }
+ },
+ {
+ "id": 2133,
+ "name": "SUBSCRIBED",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 129,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "SUBSCRIBED"
+ }
+ },
+ {
+ "id": 2134,
+ "name": "TIMED_OUT",
+ "variant": "declaration",
+ "kind": 16,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "TIMED_OUT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumeration Members",
+ "children": [2136, 2135, 2133, 2134]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 128,
+ "character": 20
+ }
+ ]
+ },
+ {
+ "id": 1434,
+ "name": "AuthApiError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1435,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1436,
+ "name": "AuthApiError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1437,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1438,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1439,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
}
]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1434,
+ "name": "AuthApiError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
+ }
+ },
+ {
+ "id": 1443,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1441,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1442,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
}
}
- },
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1430,
+ "name": "AuthError.code"
+ }
+ },
+ {
+ "id": 1440,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1435]
+ },
+ {
+ "title": "Properties",
+ "children": [1443, 1441, 1440]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 17,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1424,
+ "name": "AuthError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1425,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1426,
+ "name": "AuthError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
{
- "id": 18,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1427,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
"type": {
"type": "intrinsic",
"name": "string"
+ }
+ },
+ {
+ "id": 1428,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "typeArguments": [
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- }
- }
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
},
{
- "id": 19,
- "name": "Schema",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
+ "id": 1429,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "intrinsic",
- "name": "any"
- },
- "objectType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ },
+ {
+ "id": 1433,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1430,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- {
- "id": 20,
- "name": "ClientOptions",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
"type": "reflection",
"declaration": {
- "id": 21,
+ "id": 1431,
"name": "__type",
"variant": "declaration",
"kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 22,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [22]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ]
+ "flags": {}
}
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "id": 1432,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1425]
+ },
+ {
+ "title": "Properties",
+ "children": [1433, 1430, 1432]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 3,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 1434,
+ "name": "AuthApiError"
+ },
+ {
+ "type": "reference",
+ "target": 1444,
+ "name": "AuthUnknownError"
+ },
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError"
+ }
+ ]
+ },
+ {
+ "id": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1492,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1493,
+ "name": "AuthImplicitGrantRedirectError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1494,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1495,
+ "name": "details",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
- },
- "trueType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
},
- "extendsType": {
+ {
"type": "reflection",
"declaration": {
- "id": 23,
+ "id": 1496,
"name": "__type",
"variant": "declaration",
"kind": 65536,
"flags": {},
"children": [
{
- "id": 24,
- "name": "__InternalSupabase",
+ "id": 1498,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 48,
+ "character": 8
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 25,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 26,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [26]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "string"
}
- }
- ],
- "groups": [
+ },
{
- "title": "Properties",
- "children": [24]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "__InternalSupabase"
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- ],
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "falseType": {
- "type": "reflection",
- "declaration": {
- "id": 27,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 28,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
- }
- ],
- "type": {
- "type": "literal",
- "value": "12"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [28]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
- }
- ]
- }
- }
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 29,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 30,
- "name": "PostgrestVersion",
+ "id": 1497,
+ "name": "error",
"variant": "declaration",
"kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 47,
+ "character": 8
}
],
"type": {
@@ -752,1178 +1283,1291 @@
"groups": [
{
"title": "Properties",
- "children": [30]
+ "children": [1498, 1497]
}
],
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 46,
+ "character": 43
}
]
}
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "typeArguments": [
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- }
- }
- }
- ],
- "parameters": [
- {
- "id": 31,
- "name": "supabaseUrl",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 32,
- "name": "supabaseKey",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
}
]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 33,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
- "type": {
- "type": "reference",
- "target": 138,
- "typeArguments": [
- {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClientOptions",
- "package": "@supabase/supabase-js",
- "highlightedProperties": {
- "realtime": [
- {
- "kind": "text",
- "text": "Options passed along to realtime-js constructor."
- }
- ],
- "storage": [
- {
- "kind": "text",
- "text": "Options passed along to the storage-js constructor."
- }
- ]
- }
}
}
],
"type": {
"type": "reference",
- "target": 11,
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClient",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default"
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
{
- "id": 52,
- "name": "accessToken",
+ "id": 1517,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
"flags": {
"isProtected": true,
- "isOptional": true
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 53,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
- }
- ],
- "signatures": [
- {
- "id": 54,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 88,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L88"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": null
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
- }
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 34,
- "name": "auth",
+ "id": 1515,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
- "flags": {},
+ "flags": {
+ "isInherited": true
+ },
"comment": {
"summary": [
{
"kind": "text",
- "text": "Supabase Auth allows you to create and manage user sessions for access to data that is secured by access policies."
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 73,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1516,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "src/lib/SupabaseAuthClient.ts",
- "qualifiedName": "SupabaseAuthClient"
- },
- "name": "SupabaseAuthClient",
- "package": "@supabase/supabase-js"
+ "target": 1463,
+ "name": "CustomAuthError.code"
}
},
{
- "id": 38,
- "name": "authUrl",
+ "id": 1499,
+ "name": "details",
"variant": "declaration",
"kind": 1024,
- "flags": {
- "isProtected": true
- },
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 81,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 42,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1500,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1502,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 44,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1501,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 43,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1502, 1501]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 42,
+ "character": 13
+ }
+ ]
+ }
+ }
+ ]
}
},
{
- "id": 51,
- "name": "changedAccessToken",
+ "id": 1513,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true,
- "isOptional": true
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 87,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 43,
- "name": "fetch",
+ "id": 1514,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true,
- "isOptional": true
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 86,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 44,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ },
+ {
+ "id": 1503,
+ "name": "toJSON",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1504,
+ "name": "toJSON",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
"sources": [
{
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- },
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 4
}
],
- "signatures": [
- {
- "id": 45,
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1505,
"name": "__type",
- "variant": "signature",
- "kind": 4096,
+ "variant": "declaration",
+ "kind": 65536,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
- },
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
- "line": 29329,
- "character": 17
- }
- ],
- "parameters": [
+ "children": [
{
- "id": 46,
- "name": "input",
- "variant": "param",
- "kind": 32768,
+ "id": 1509,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 54,
+ "character": 8
+ }
+ ],
"type": {
"type": "union",
"types": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInfo"
- },
- "name": "RequestInfo",
- "package": "typescript"
+ "type": "literal",
+ "value": null
},
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "type": "reflection",
+ "declaration": {
+ "id": 1510,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1512,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 56,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1511,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 55,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1512, 1511]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 54,
+ "character": 17
+ }
+ ]
+ }
}
]
}
},
{
- "id": 47,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
+ "id": 1507,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 52,
+ "character": 8
+ }
+ ],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "string"
}
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- },
- {
- "id": 48,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
- }
- ]
- },
- "sources": [
- {
- "fileName": "node_modules/@types/node/web-globals/fetch.d.ts",
- "line": 16,
- "character": 13
- }
- ],
- "parameters": [
{
- "id": 49,
- "name": "input",
- "variant": "param",
- "kind": 32768,
+ "id": 1506,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 51,
+ "character": 8
+ }
+ ],
"type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Request"
- },
- "name": "Request",
- "package": "typescript"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
- }
- ]
+ "type": "intrinsic",
+ "name": "string"
}
},
{
- "id": 50,
- "name": "init",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
+ "id": 1508,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 53,
+ "character": 8
+ }
+ ],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "RequestInit"
- },
- "name": "RequestInit",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "number"
}
}
],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1509, 1507, 1506, 1508]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1492]
+ },
+ {
+ "title": "Properties",
+ "children": [1517, 1515, 1499, 1513, 1514]
+ },
+ {
+ "title": "Methods",
+ "children": [1503]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 41,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1482,
+ "name": "AuthInvalidCredentialsError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1483,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1484,
+ "name": "AuthInvalidCredentialsError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1485,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "Response"
- },
- "name": "Response",
- "package": "typescript"
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "type": "intrinsic",
+ "name": "string"
}
}
- ]
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1482,
+ "name": "AuthInvalidCredentialsError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
}
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
}
},
{
- "id": 40,
- "name": "functionsUrl",
+ "id": 1490,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isProtected": true,
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 83,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 55,
- "name": "headers",
+ "id": 1488,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 90,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
+ "type": "union",
+ "types": [
{
"type": "intrinsic",
- "name": "string"
+ "name": "undefined"
},
{
- "type": "intrinsic",
- "name": "string"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1489,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
}
- ],
- "name": "Record",
- "package": "typescript"
- }
- },
- {
- "id": 35,
- "name": "realtime",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 74,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L74"
- }
- ],
- "type": {
+ ]
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeClient",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "target": 1463,
+ "name": "CustomAuthError.code"
}
},
{
- "id": 37,
- "name": "realtimeUrl",
+ "id": 1486,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 80,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
"type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 41,
- "name": "rest",
+ "id": 1487,
+ "name": "status",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 84,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L84"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestClient.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
- }
- ],
- "name": "PostgrestClient",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 36,
- "name": "storage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "Supabase Storage allows you to manage user-generated content, such as photos or videos."
+ "text": "HTTP status code that caused the error."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 78,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
],
"type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../storage-js/src/StorageClient.ts",
- "qualifiedName": "StorageClient"
- },
- "name": "StorageClient",
- "package": "@supabase/storage-js"
+ "target": 1462,
+ "name": "CustomAuthError.status"
}
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1483]
},
{
- "id": 42,
- "name": "storageKey",
+ "title": "Properties",
+ "children": [1490, 1488, 1486, 1487]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 38,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1567,
+ "name": "AuthInvalidJwtError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1568,
+ "name": "constructor",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isProtected": true
- },
+ "kind": 512,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 85,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 98,
+ "character": 4
}
],
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "signatures": [
+ {
+ "id": 1569,
+ "name": "AuthInvalidJwtError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 98,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1570,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1567,
+ "name": "AuthInvalidJwtError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
}
},
{
- "id": 39,
- "name": "storageUrl",
+ "id": 1575,
+ "name": "__isAuthError",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isProtected": true,
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 82,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
"type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "URL"
- },
- "name": "URL",
- "package": "typescript"
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 57,
- "name": "supabaseKey",
+ "id": 1573,
+ "name": "code",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
+ "isInherited": true
},
"comment": {
"summary": [
{
"kind": "text",
- "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 107,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L107"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
"type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1574,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ ]
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
},
{
- "id": 56,
- "name": "supabaseUrl",
+ "id": 1571,
+ "name": "name",
"variant": "declaration",
"kind": 1024,
"flags": {
- "isProtected": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
- }
- ]
+ "isInherited": true
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 106,
- "character": 14,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L106"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
"type": {
"type": "intrinsic",
"name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 58,
- "name": "functions",
+ "id": 1572,
+ "name": "status",
"variant": "declaration",
- "kind": 262144,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 180,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L180"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
],
- "getSignature": {
- "id": 59,
- "name": "functions",
- "variant": "signature",
- "kind": 524288,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Supabase Functions allows you to deploy and invoke edge functions."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 180,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L180"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/functions-js/src/FunctionsClient.ts",
- "qualifiedName": "FunctionsClient"
- },
- "name": "FunctionsClient",
- "package": "@supabase/functions-js"
- }
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
}
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1568]
},
{
- "id": 85,
- "name": "channel",
+ "title": "Properties",
+ "children": [1575, 1573, 1571, 1572]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 97,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1474,
+ "name": "AuthInvalidTokenResponseError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1475,
+ "name": "constructor",
"variant": "declaration",
- "kind": 2048,
+ "kind": 512,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 294,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 36,
+ "character": 4
}
],
"signatures": [
{
- "id": 86,
- "name": "channel",
+ "id": 1476,
+ "name": "AuthInvalidTokenResponseError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 294,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L294"
- }
- ],
- "parameters": [
- {
- "id": 87,
- "name": "name",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the Realtime channel."
- }
- ]
- },
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 88,
- "name": "opts",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The options to pass to the Realtime channel."
- }
- ]
- },
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "RealtimeChannelOptions"
- },
- "name": "RealtimeChannelOptions",
- "package": "@supabase/realtime-js"
- },
- "defaultValue": "..."
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 36,
+ "character": 4
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "target": 1474,
+ "name": "AuthInvalidTokenResponseError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
{
- "id": 60,
- "name": "from",
+ "id": 1481,
+ "name": "__isAuthError",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1479,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
"comment": {
"summary": [
{
"kind": "text",
- "text": "Perform a query on a table or a view."
- }
- ],
- "blockTags": [
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
{
- "tag": "@param",
- "name": "relation",
- "content": [
- {
- "kind": "text",
- "text": "The table or view name to query"
- }
- ]
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 188,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L188"
- },
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 192,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L192"
- },
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 200,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L200"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
}
],
- "signatures": [
- {
- "id": 61,
- "name": "from",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 188,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L188"
- }
- ],
- "typeParameters": [
- {
- "id": 62,
- "name": "TableName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 63,
- "name": "Table",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericTable"
- },
- "name": "GenericTable",
- "package": "@supabase/supabase-js"
- }
- }
- ],
- "parameters": [
- {
- "id": 64,
- "name": "relation",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 62,
- "name": "TableName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- }
- ],
- "type": {
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
"type": "reference",
"target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestQueryBuilder.ts",
- "qualifiedName": "default"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "reference",
- "target": 63,
- "name": "Table",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
},
{
- "type": "reference",
- "target": 62,
- "name": "TableName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "reflection",
+ "declaration": {
+ "id": 1480,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- ],
- "name": "PostgrestQueryBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ ]
}
- },
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1477,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 65,
- "name": "from",
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1478,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1475]
+ },
+ {
+ "title": "Properties",
+ "children": [1481, 1479, 1477, 1478]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 35,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1519,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1520,
+ "name": "AuthPKCEGrantCodeExchangeError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 192,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L192"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 4
}
],
- "typeParameters": [
+ "parameters": [
{
- "id": 66,
- "name": "ViewName",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1521,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
"type": {
"type": "intrinsic",
@@ -1931,981 +2575,961 @@
}
},
{
- "id": 67,
- "name": "View",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
+ "id": 1522,
+ "name": "details",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericView"
- },
- "name": "GenericView",
- "package": "@supabase/supabase-js"
- }
- }
- ],
- "parameters": [
- {
- "id": 68,
- "name": "relation",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "reference",
- "target": 66,
- "name": "ViewName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1523,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1525,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 68,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1524,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 67,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1525, 1524]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 66,
+ "character": 43
+ }
+ ]
+ }
+ }
+ ]
}
}
],
"type": {
+ "type": "reference",
+ "target": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1544,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1542,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
"type": "reference",
"target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestQueryBuilder.ts",
- "qualifiedName": "default"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "reference",
- "target": 67,
- "name": "View",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
},
{
- "type": "reference",
- "target": 66,
- "name": "ViewName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "type": "reflection",
+ "declaration": {
+ "id": 1543,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- ],
- "name": "PostgrestQueryBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ ]
}
- }
- ]
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
},
{
- "id": 89,
- "name": "getChannels",
+ "id": 1526,
+ "name": "details",
"variant": "declaration",
- "kind": 2048,
+ "kind": 1024,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 301,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 62,
+ "character": 4
}
],
- "signatures": [
- {
- "id": 90,
- "name": "getChannels",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns all Realtime channels."
- }
- ]
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 301,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L301"
- }
- ],
- "type": {
- "type": "array",
- "elementType": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1527,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1529,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1528,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 63,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1529, 1528]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 62,
+ "character": 13
+ }
+ ]
}
}
+ ]
+ }
+ },
+ {
+ "id": 1540,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
- ]
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
},
{
- "id": 94,
- "name": "removeAllChannels",
+ "id": 1541,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ },
+ {
+ "id": 1530,
+ "name": "toJSON",
"variant": "declaration",
"kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 318,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 4
}
],
"signatures": [
{
- "id": 95,
- "name": "removeAllChannels",
+ "id": 1531,
+ "name": "toJSON",
"variant": "signature",
"kind": 4096,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unsubscribes and removes all Realtime channels from Realtime client."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 318,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 4
}
],
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "array",
- "elementType": {
- "type": "union",
- "types": [
+ "type": "reflection",
+ "declaration": {
+ "id": 1532,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1536,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "type": "literal",
- "value": "error"
- },
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 74,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1537,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1539,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 76,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1538,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 75,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1539, 1538]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 74,
+ "character": 17
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1534,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "type": "literal",
- "value": "ok"
- },
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 72,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1533,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "type": "literal",
- "value": "timed out"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 71,
+ "character": 8
}
- ]
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1535,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 73,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
}
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1536, 1534, 1533, 1535]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 70,
+ "character": 14
+ }
+ ]
+ }
}
}
]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1519]
},
{
- "id": 91,
- "name": "removeChannel",
+ "title": "Properties",
+ "children": [1544, 1542, 1526, 1540, 1541]
+ },
+ {
+ "title": "Methods",
+ "children": [1530]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 61,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1545,
+ "name": "AuthRetryableFetchError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1546,
+ "name": "constructor",
"variant": "declaration",
- "kind": 2048,
+ "kind": 512,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 311,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 81,
+ "character": 4
}
],
"signatures": [
{
- "id": 92,
- "name": "removeChannel",
+ "id": 1547,
+ "name": "AuthRetryableFetchError",
"variant": "signature",
- "kind": 4096,
+ "kind": 16384,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unsubscribes and removes Realtime channel from Realtime client."
- }
- ]
- },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 311,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 81,
+ "character": 4
}
],
"parameters": [
{
- "id": 93,
- "name": "channel",
+ "id": 1548,
+ "name": "message",
"variant": "param",
"kind": 32768,
"flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the Realtime channel."
- }
- ]
- },
"type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeChannel.ts",
- "qualifiedName": "default"
- },
- "name": "RealtimeChannel",
- "package": "@supabase/realtime-js",
- "qualifiedName": "default"
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1549,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
}
}
],
"type": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "error"
- },
- {
- "type": "literal",
- "value": "ok"
- },
- {
- "type": "literal",
- "value": "timed out"
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
+ "target": 1545,
+ "name": "AuthRetryableFetchError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
}
- ]
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
},
{
- "id": 73,
- "name": "rpc",
+ "id": 1554,
+ "name": "__isAuthError",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 247,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
}
],
- "signatures": [
- {
- "id": 74,
- "name": "rpc",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Perform a function call."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 247,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L247"
- }
- ],
- "typeParameters": [
- {
- "id": 75,
- "name": "FnName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1552,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- {
- "id": 76,
- "name": "Args",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "unknown"
- }
- ],
- "name": "Record",
- "package": "typescript"
- },
- "default": {
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
"type": "intrinsic",
- "name": "never"
- }
- },
- {
- "id": 77,
- "name": "FilterBuilder",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/rpc.ts",
- "qualifiedName": "RpcFunctionNotFound"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "RpcFunctionNotFound",
- "package": "@supabase/supabase-js"
- },
- "default": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/rpc.ts",
- "qualifiedName": "GetRpcFunctionFilterBuilderByArgs"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 76,
- "name": "Args",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "GetRpcFunctionFilterBuilderByArgs",
- "package": "@supabase/supabase-js"
- }
- }
- ],
- "parameters": [
- {
- "id": 78,
- "name": "fn",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The function name to call"
- }
- ]
- },
- "type": {
- "type": "reference",
- "target": 75,
- "name": "FnName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "id": 79,
- "name": "args",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The arguments to pass to the function call"
- }
- ]
- },
- "type": {
- "type": "reference",
- "target": 76,
- "name": "Args",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "defaultValue": "..."
- },
- {
- "id": 80,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Named parameters"
- }
- ]
+ "name": "string"
},
- "type": {
+ {
"type": "reflection",
"declaration": {
- "id": 81,
+ "id": 1553,
"name": "__type",
"variant": "declaration",
"kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 84,
- "name": "count",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Count algorithm to use to count rows returned by the\nfunction. Only applicable for [set-returning\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\n\n"
- },
- {
- "kind": "code",
- "text": "`\"exact\"`"
- },
- {
- "kind": "text",
- "text": ": Exact but slow count algorithm. Performs a "
- },
- {
- "kind": "code",
- "text": "`COUNT(*)`"
- },
- {
- "kind": "text",
- "text": " under the\nhood.\n\n"
- },
- {
- "kind": "code",
- "text": "`\"planned\"`"
- },
- {
- "kind": "text",
- "text": ": Approximated but fast count algorithm. Uses the Postgres\nstatistics under the hood.\n\n"
- },
- {
- "kind": "code",
- "text": "`\"estimated\"`"
- },
- {
- "kind": "text",
- "text": ": Uses exact count for low numbers and planned count for high\nnumbers."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 261,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L261"
- }
- ],
- "type": {
- "type": "union",
- "types": [
- {
- "type": "literal",
- "value": "exact"
- },
- {
- "type": "literal",
- "value": "planned"
- },
- {
- "type": "literal",
- "value": "estimated"
- }
- ]
- }
- },
- {
- "id": 83,
- "name": "get",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When set to "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": ", the function will be called with\nread-only access mode."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 260,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L260"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 82,
- "name": "head",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When set to "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": ", "
- },
- {
- "kind": "code",
- "text": "`data`"
- },
- {
- "kind": "text",
- "text": " will not be returned.\nUseful if you only need the count."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 259,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L259"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [84, 83, 82]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 258,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L258"
- }
- ]
- }
- },
- "defaultValue": "..."
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestFilterBuilder.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 19,
- "name": "Schema",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Schema",
- "refersToTypeParameter": true
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Row"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Result"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "RelationName"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "Relationships"
- },
- "objectType": {
- "type": "reference",
- "target": 77,
- "name": "FilterBuilder",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "flags": {}
}
- },
- {
- "type": "literal",
- "value": "RPC"
}
- ],
- "name": "PostgrestFilterBuilder",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
+ ]
}
- }
- ]
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
},
{
- "id": 69,
- "name": "schema",
+ "id": 1550,
+ "name": "name",
"variant": "declaration",
- "kind": 2048,
- "flags": {},
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 212,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
],
- "signatures": [
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1551,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
{
- "id": 70,
- "name": "schema",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Select a schema to query or perform an function (rpc) call.\n\nThe schema needs to be on the list of exposed schemas inside Supabase."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 212,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L212"
- }
- ],
- "typeParameters": [
- {
- "id": 71,
- "name": "DynamicSchema",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "parameters": [
- {
- "id": 72,
- "name": "schema",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The schema to query"
- }
- ]
- },
- "type": {
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestClient.ts",
- "qualifiedName": "default"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 20,
- "name": "ClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.ClientOptions",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 71,
- "name": "DynamicSchema",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "intrinsic",
- "name": "any"
- },
- "objectType": {
- "type": "intrinsic",
- "name": "any"
- }
- },
- "falseType": {
- "type": "intrinsic",
- "name": "any"
- }
- }
- ],
- "name": "PostgrestClient",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
- }
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
- ]
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
}
],
"groups": [
{
"title": "Constructors",
- "children": [12]
+ "children": [1546]
},
{
"title": "Properties",
- "children": [52, 34, 38, 51, 43, 40, 55, 35, 37, 41, 36, 42, 39, 57, 56]
- },
- {
- "title": "Accessors",
- "children": [58]
- },
- {
- "title": "Methods",
- "children": [85, 60, 89, 94, 91, 73, 69]
+ "children": [1554, 1552, 1550, 1551]
}
],
"sources": [
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 37,
- "character": 21,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 80,
+ "character": 21
}
],
- "typeParameters": [
+ "extendedTypes": [
{
- "id": 121,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1466,
+ "name": "AuthSessionMissingError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1467,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
"flags": {},
- "default": {
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1468,
+ "name": "AuthSessionMissingError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1466,
+ "name": "AuthSessionMissingError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1473,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
"type": "intrinsic",
- "name": "any"
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
}
},
{
- "id": 122,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
+ "id": 1471,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
"type": {
"type": "union",
"types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
{
"type": "intersection",
"types": [
@@ -2914,3323 +3538,57106 @@
"name": "string"
},
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ "type": "reflection",
+ "declaration": {
+ "id": 1472,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
}
}
]
- },
- {
- "type": "reflection",
- "declaration": {
- "id": 123,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 124,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [124]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 44,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L44"
- }
- ]
- }
}
]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1469,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
+ }
+ },
+ {
+ "id": 1470,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
}
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1467]
+ },
+ {
+ "title": "Properties",
+ "children": [1473, 1471, 1469, 1470]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 31,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1444,
+ "name": "AuthUnknownError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1445,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1446,
+ "name": "AuthUnknownError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
{
- "type": "intrinsic",
- "name": "string"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1447,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ "id": 1448,
+ "name": "originalError",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
}
}
- ]
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1444,
+ "name": "AuthUnknownError",
+ "package": "@supabase/auth-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
+ }
}
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
}
},
{
- "id": 125,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
+ "id": 1453,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
"type": {
- "type": "intersection",
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1450,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
"types": [
{
"type": "intrinsic",
- "name": "string"
+ "name": "undefined"
},
{
- "type": "typeOperator",
- "operator": "keyof",
+ "type": "reference",
"target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1451,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
}
- ],
- "name": "Omit",
- "package": "typescript"
- }
+ }
+ ]
}
]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- }
- ]
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1430,
+ "name": "AuthError.code"
+ }
+ },
+ {
+ "id": 1449,
+ "name": "originalError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 23,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ },
+ {
+ "id": 1452,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
},
- "extendsType": {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1445]
+ },
+ {
+ "title": "Properties",
+ "children": [1453, 1450, 1449, 1452]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 22,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1555,
+ "name": "AuthWeakPasswordError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "This error is thrown on certain methods when the password used is deemed\nweak. Inspect the reasons to identify what password strength rules are\ninadequate."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1556,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1557,
+ "name": "AuthWeakPasswordError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 94,
+ "character": 4
}
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
+ ],
+ "parameters": [
+ {
+ "id": 1558,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
"type": "intrinsic",
"name": "string"
- },
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
+ }
+ },
+ {
+ "id": 1559,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1560,
+ "name": "reasons",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ "type": "literal",
+ "value": "length"
},
{
"type": "literal",
- "value": "__InternalSupabase"
+ "value": "characters"
+ },
+ {
+ "type": "literal",
+ "value": "pwned"
}
- ],
- "name": "Omit",
- "package": "typescript"
+ ]
}
}
- ]
- }
- }
- }
- },
- {
- "id": 126,
- "name": "Schema",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {},
- "type": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
+ }
+ ],
+ "type": {
"type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
+ "target": 1555,
+ "name": "AuthWeakPasswordError",
+ "package": "@supabase/auth-js"
},
- "objectType": {
+ "overwrites": {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ "target": 1456,
+ "name": "CustomAuthError.constructor"
}
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1455,
+ "name": "CustomAuthError.constructor"
+ }
+ },
+ {
+ "id": 1566,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1465,
+ "name": "CustomAuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1564,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
},
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
},
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
+ {
+ "kind": "text",
+ "text": " will also be undefined."
}
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
+ ]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
},
- "objectType": {
+ {
"type": "reference",
"target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
},
- "typeArguments": [
- {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Omit",
- "package": "typescript"
- }
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/rest/types/common/common.ts",
- "qualifiedName": "GenericSchema"
- },
- "name": "GenericSchema",
- "package": "@supabase/supabase-js"
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "reference",
- "target": 18,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaName",
- "refersToTypeParameter": true
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
},
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
{
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "string"
},
{
- "type": "literal",
- "value": "__InternalSupabase"
+ "type": "reflection",
+ "declaration": {
+ "id": 1565,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
}
- ],
- "name": "Omit",
- "package": "typescript"
+ ]
}
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1463,
+ "name": "CustomAuthError.code"
+ }
+ },
+ {
+ "id": 1562,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
}
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1461,
+ "name": "CustomAuthError.name"
}
},
{
- "id": 127,
- "name": "ClientOptions",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 1561,
+ "name": "reasons",
+ "variant": "declaration",
+ "kind": 1024,
"flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Reasons why the password is deemed weak."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 93,
+ "character": 4
+ }
+ ],
"type": {
- "type": "reflection",
- "declaration": {
- "id": 128,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
{
- "id": 129,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 26,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
+ "type": "literal",
+ "value": "length"
+ },
{
- "title": "Properties",
- "children": [129]
- }
- ],
- "sources": [
+ "type": "literal",
+ "value": "characters"
+ },
{
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 59,
- "character": 24,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ "type": "literal",
+ "value": "pwned"
}
]
}
+ }
+ },
+ {
+ "id": 1563,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "intersection",
- "types": [
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1462,
+ "name": "CustomAuthError.status"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1556]
+ },
+ {
+ "title": "Properties",
+ "children": [1566, 1564, 1562, 1561, 1563]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 89,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 1454,
+ "name": "CustomAuthError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1455,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1456,
+ "name": "CustomAuthError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
{
- "type": "intrinsic",
- "name": "string"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1457,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Omit"
- },
- "typeArguments": [
+ "id": 1458,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1459,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1460,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
{
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
+ "type": "intrinsic",
+ "name": "undefined"
},
{
- "type": "literal",
- "value": "__InternalSupabase"
+ "type": "intrinsic",
+ "name": "string"
}
- ],
- "name": "Omit",
- "package": "typescript"
+ ]
}
}
- ]
- },
- "trueType": {
- "type": "conditional",
- "checkType": {
+ ],
+ "type": {
"type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
+ "target": 1454,
+ "name": "CustomAuthError",
+ "package": "@supabase/auth-js"
},
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 130,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 131,
- "name": "__InternalSupabase",
+ "overwrites": {
+ "type": "reference",
+ "target": 1426,
+ "name": "AuthError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 1425,
+ "name": "AuthError.constructor"
+ }
+ },
+ {
+ "id": 1465,
+ "name": "__isAuthError",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1433,
+ "name": "AuthError.__isAuthError"
+ }
+ },
+ {
+ "id": 1463,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error code associated with the error. Most errors coming from\nHTTP responses will have a code, though some errors that occur\nbefore a response is received will not have one present. In that\ncase "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#status"
+ },
+ {
+ "kind": "text",
+ "text": " will also be undefined."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/error-codes.ts",
+ "qualifiedName": "ErrorCode"
+ },
+ "name": "ErrorCode",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1464,
+ "name": "__type",
"variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 25,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 132,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 133,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 47,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [133]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 45,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [131]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 62,
- "character": 23,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L62"
- }
- ]
- }
- },
- "trueType": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "__InternalSupabase"
- },
- "objectType": {
- "type": "reference",
- "target": 14,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.Database",
- "refersToTypeParameter": true
- }
- },
- "falseType": {
- "type": "reflection",
- "declaration": {
- "id": 134,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 135,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 10,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
- }
- ],
- "type": {
- "type": "literal",
- "value": "12"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [135]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 65,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ "kind": 65536,
+ "flags": {}
}
- ]
- }
+ }
+ ]
}
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "extendsType": {
- "type": "reflection",
- "declaration": {
- "id": 136,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 137,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 42,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [137]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
- "line": 66,
- "character": 40,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/SupabaseClient.ts#L66"
- }
- ]
- }
- },
- "trueType": {
- "type": "reference",
- "target": 15,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default.SchemaNameOrClientOptions",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
+ ]
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 1430,
+ "name": "AuthError.code"
+ }
+ },
+ {
+ "id": 1461,
+ "name": "name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "AuthError.name"
+ }
+ },
+ {
+ "id": 1462,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "HTTP status code that caused the error."
}
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 28,
+ "character": 4
}
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 1432,
+ "name": "AuthError.status"
}
}
- ]
- },
- {
- "id": 166,
- "name": "QueryData",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1455]
+ },
+ {
+ "title": "Properties",
+ "children": [1465, 1463, 1461, 1462]
+ }
+ ],
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 26,
+ "character": 21
}
],
- "typeParameters": [
+ "extendedTypes": [
{
- "id": 169,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
}
],
- "type": {
- "type": "conditional",
- "checkType": {
+ "extendedBy": [
+ {
"type": "reference",
- "target": 169,
- "name": "T",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "target": 1466,
+ "name": "AuthSessionMissingError"
},
- "extendsType": {
+ {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
- },
- "typeArguments": [
- {
- "type": "reflection",
- "declaration": {
- "id": 167,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 168,
- "name": "data",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 51,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
- }
- ],
- "type": {
- "type": "inferred",
- "name": "U"
- }
+ "target": 1474,
+ "name": "AuthInvalidTokenResponseError"
+ },
+ {
+ "type": "reference",
+ "target": 1482,
+ "name": "AuthInvalidCredentialsError"
+ },
+ {
+ "type": "reference",
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError"
+ },
+ {
+ "type": "reference",
+ "target": 1518,
+ "name": "AuthPKCEGrantCodeExchangeError"
+ },
+ {
+ "type": "reference",
+ "target": 1545,
+ "name": "AuthRetryableFetchError"
+ },
+ {
+ "type": "reference",
+ "target": 1555,
+ "name": "AuthWeakPasswordError"
+ },
+ {
+ "type": "reference",
+ "target": 1567,
+ "name": "AuthInvalidJwtError"
+ }
+ ]
+ },
+ {
+ "id": 79,
+ "name": "FunctionsError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 80,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 81,
+ "name": "FunctionsError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 82,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [168]
+ },
+ {
+ "id": 83,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
}
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 115,
- "character": 49,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L115"
+ },
+ {
+ "id": 84,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
}
- ]
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
}
}
],
- "name": "PromiseLike",
- "package": "typescript"
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
},
- "trueType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "U"
- },
- "name": "U",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
+ {
+ "id": 85,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
{
- "type": "literal",
- "value": null
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
}
],
- "name": "Exclude",
- "package": "typescript"
- },
- "falseType": {
- "type": "intrinsic",
- "name": "never"
- }
- }
- },
- {
- "id": 170,
- "name": "QueryError",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 116,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L116"
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
}
],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/postgrest-js/src/PostgrestError.ts",
- "qualifiedName": "default"
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [80]
},
- "name": "PostgrestError",
- "package": "@supabase/postgrest-js",
- "qualifiedName": "default"
- }
- },
- {
- "id": 164,
- "name": "QueryResult",
- "variant": "declaration",
- "kind": 2097152,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Helper types for query results."
- }
- ]
- },
- "sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 114,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L114"
+ "title": "Properties",
+ "children": [85]
}
],
- "typeParameters": [
+ "sources": [
{
- "id": 165,
- "name": "T",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 16,
+ "character": 21
}
],
- "type": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 165,
- "name": "T",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "extendsType": {
+ "extendedTypes": [
+ {
"type": "reference",
"target": {
"sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "PromiseLike"
+ "qualifiedName": "Error"
},
- "typeArguments": [
- {
- "type": "inferred",
- "name": "U"
- }
- ],
- "name": "PromiseLike",
+ "name": "Error",
"package": "typescript"
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "target": 64,
+ "name": "FunctionsHttpError"
},
- "trueType": {
+ {
"type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "U"
- },
- "name": "U",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "target": 69,
+ "name": "FunctionsFetchError"
},
- "falseType": {
- "type": "intrinsic",
- "name": "never"
+ {
+ "type": "reference",
+ "target": 74,
+ "name": "FunctionsRelayError"
}
- }
+ ]
},
{
- "id": 138,
- "name": "SupabaseClientOptions",
+ "id": 69,
+ "name": "FunctionsFetchError",
"variant": "declaration",
- "kind": 2097152,
+ "kind": 128,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 30,
- "character": 12,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L30"
- }
- ],
- "typeParameters": [
+ "children": [
{
- "id": 163,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
- "flags": {}
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 139,
- "name": "__type",
+ "id": 70,
+ "name": "constructor",
"variant": "declaration",
- "kind": 65536,
+ "kind": 512,
"flags": {},
- "children": [
+ "sources": [
{
- "id": 160,
- "name": "accessToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional function for using a third-party authentication system with\nSupabase. The function should return an access token or ID token (JWT) by\nobtaining it from the third-party auth client library. Note that this\nfunction may be called concurrently and many times. Use memoization and\nlocking techniques if this is not supported by the client libraries.\n\nWhen set, the "
- },
- {
- "kind": "code",
- "text": "`auth`"
- },
- {
- "kind": "text",
- "text": " namespace of the Supabase client cannot be used.\nCreate another client if you wish to use Supabase Auth and third-party\nauthentications concurrently in the same application."
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 21,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 71,
+ "name": "FunctionsFetchError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 21,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 72,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
}
- ]
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 69,
+ "name": "FunctionsFetchError",
+ "package": "@supabase/functions-js"
},
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 73,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [70]
+ },
+ {
+ "title": "Properties",
+ "children": [73]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 20,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
+ },
+ {
+ "id": 64,
+ "name": "FunctionsHttpError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 65,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 66,
+ "name": "FunctionsHttpError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 108,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L108"
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 27,
+ "character": 4
}
],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 161,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "parameters": [
+ {
+ "id": 67,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 108,
- "character": 16,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L108"
- }
- ],
- "signatures": [
- {
- "id": 162,
- "name": "__type",
- "variant": "signature",
- "kind": 4096,
- "flags": {},
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Promise"
- },
- "typeArguments": [
- {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "literal",
- "value": null
- }
- ]
- }
- ],
- "name": "Promise",
- "package": "typescript"
- }
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
}
+ ],
+ "type": {
+ "type": "reference",
+ "target": 64,
+ "name": "FunctionsHttpError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
}
- },
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 68,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
{
- "id": 143,
- "name": "auth",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [65]
+ },
+ {
+ "title": "Properties",
+ "children": [68]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 26,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
+ },
+ {
+ "id": 74,
+ "name": "FunctionsRelayError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 75,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 76,
+ "name": "FunctionsRelayError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 38,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L38"
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 24,
+ "character": 4
}
],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 144,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "parameters": [
+ {
+ "id": 77,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
"flags": {},
- "children": [
- {
- "id": 145,
- "name": "autoRefreshToken",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Automatically refreshes the token for logged-in users. Defaults to true."
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 74,
+ "name": "FunctionsRelayError",
+ "package": "@supabase/functions-js"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": 81,
+ "name": "FunctionsError.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": 80,
+ "name": "FunctionsError.constructor"
+ }
+ },
+ {
+ "id": 78,
+ "name": "context",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": 85,
+ "name": "FunctionsError.context"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [75]
+ },
+ {
+ "title": "Properties",
+ "children": [78]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 23,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": 79,
+ "name": "FunctionsError",
+ "package": "@supabase/functions-js"
+ }
+ ]
+ },
+ {
+ "id": 275,
+ "name": "GoTrueAdminApi",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 276,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 277,
+ "name": "GoTrueAdminApi",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 278,
+ "name": "__namedParameters",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 279,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 285,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 22,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 286,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 287,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 288,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 289,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 290,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 291,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 292,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
}
- ]
- },
- "sources": [
+ },
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 42,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L42"
+ "id": 281,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 19,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 282,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 19,
+ "character": 18
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 283,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 20,
+ "character": 12
+ }
+ ],
+ "parameters": [
+ {
+ "id": 284,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 280,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 18,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 152,
- "name": "debug",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
- }
- ]
- },
- "sources": [
+ "groups": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 74,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L74"
+ "title": "Properties",
+ "children": [285, 281, 280]
}
],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "debug"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 17,
+ "character": 42
}
- }
- },
- {
- "id": 148,
- "name": "detectSessionInUrl",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 300,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 16,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 301,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 302,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 303,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
{
- "kind": "text",
- "text": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
}
]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 54,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L54"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
}
},
{
- "id": 151,
- "name": "flowType",
- "variant": "declaration",
- "kind": 1024,
+ "id": 304,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
"flags": {
"isOptional": true
},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 70,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L70"
- }
- ],
"type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "flowType"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
},
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
+ "name": "RequestInit",
+ "package": "typescript"
}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
},
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 305,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
{
- "id": 153,
- "name": "lock",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
- }
- ],
- "modifierTags": ["@experimental"]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 80,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L80"
- }
- ],
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 306,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
"type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "lock"
- },
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
},
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
}
},
{
- "id": 147,
- "name": "persistSession",
- "variant": "declaration",
- "kind": 1024,
+ "id": 307,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
"flags": {
"isOptional": true
},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Whether to persist a logged-in session to storage. Defaults to true."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 50,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L50"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "boolean"
- }
- },
- {
- "id": 149,
- "name": "storage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A storage provider. Used to store the logged-in session."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 58,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L58"
- }
- ],
"type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "storage"
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
},
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- },
- {
- "id": 146,
- "name": "storageKey",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional key name used for storing tokens in local storage."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 46,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L46"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "name": "RequestInit",
+ "package": "typescript"
}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
},
- {
- "id": 150,
- "name": "userStorage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A storage provider to store the user profile separately from the session.\nUseful when you need to store the session information in cookies,\nwithout bloating the data with the redundant user object."
- }
- ],
- "modifierTags": ["@experimental"]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 66,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L66"
- }
- ],
- "type": {
- "type": "indexedAccess",
- "indexType": {
- "type": "literal",
- "value": "userStorage"
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
},
- "objectType": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseAuthClientOptions"
- },
- "name": "SupabaseAuthClientOptions",
- "package": "@supabase/supabase-js"
- }
+ "name": "Response",
+ "package": "typescript"
}
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [145, 152, 148, 151, 153, 147, 149, 146, 150]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 38,
- "character": 9,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L38"
- }
- ]
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
}
- }
- },
+ ]
+ }
+ }
+ },
+ {
+ "id": 296,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
{
- "id": 140,
- "name": "db",
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 297,
+ "name": "__type",
"variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to "
- },
- {
- "kind": "code",
- "text": "`public`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
+ "kind": 65536,
+ "flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 34,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L34"
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 13,
+ "character": 23
}
],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 141,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
+ "indexSignatures": [
+ {
+ "id": 298,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
"flags": {},
- "children": [
+ "sources": [
{
- "id": 142,
- "name": "schema",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 35,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L35"
- }
- ],
- "type": {
- "type": "reference",
- "target": 163,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 14,
+ "character": 8
}
],
- "groups": [
+ "parameters": [
{
- "title": "Properties",
- "children": [142]
+ "id": 299,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 34,
- "character": 7,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L34"
- }
- ]
- }
- }
- },
- {
- "id": 156,
- "name": "global",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 87,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L87"
- }
- ],
- "type": {
- "type": "reflection",
- "declaration": {
- "id": 157,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 158,
- "name": "fetch",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A custom "
- },
- {
- "kind": "code",
- "text": "`fetch`"
- },
- {
- "kind": "text",
- "text": " implementation."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 91,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L91"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "Fetch"
- },
- "name": "Fetch",
- "package": "@supabase/supabase-js"
- }
- },
- {
- "id": 159,
- "name": "headers",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional headers for initializing the client."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 95,
- "character": 4,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L95"
- }
- ],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Record"
- },
- "typeArguments": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "intrinsic",
- "name": "string"
- }
- ],
- "name": "Record",
- "package": "typescript"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [158, 159]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 87,
- "character": 11,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L87"
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
+ ]
+ }
+ }
+ },
+ {
+ "id": 293,
+ "name": "mfa",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all MFA administration methods."
}
- },
+ ]
+ },
+ "sources": [
{
- "id": 154,
- "name": "realtime",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 6,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1237,
+ "name": "GoTrueAdminMFAApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 294,
+ "name": "oauth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth client administration methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1347,
+ "name": "GoTrueAdminOAuthApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 295,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 12,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 325,
+ "name": "createUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 326,
+ "name": "createUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
"comment": {
"summary": [
{
"kind": "text",
- "text": "Options passed to the realtime-js instance"
+ "text": "Creates a new user.\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
}
]
},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 85,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L85"
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 56,
+ "character": 4
}
],
- "type": {
- "type": "reference",
- "target": {
- "sourceFileName": "node_modules/@supabase/realtime-js/src/RealtimeClient.ts",
- "qualifiedName": "RealtimeClientOptions"
- },
- "name": "RealtimeClientOptions",
- "package": "@supabase/realtime-js"
- }
- },
- {
- "id": 155,
- "name": "storage",
- "variant": "declaration",
- "kind": 1024,
- "flags": {
- "isOptional": true
- },
- "sources": [
+ "parameters": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 86,
- "character": 2,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L86"
+ "id": 327,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 839,
+ "name": "AdminUserAttributes",
+ "package": "@supabase/auth-js"
+ }
}
],
"type": {
"type": "reference",
"target": {
- "sourceFileName": "../storage-js/src/StorageClient.ts",
- "qualifiedName": "StorageClientOptions"
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
},
- "name": "StorageClientOptions",
- "package": "@supabase/storage-js"
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
}
}
- ],
- "groups": [
+ ]
+ },
+ {
+ "id": 349,
+ "name": "deleteUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
{
- "title": "Properties",
- "children": [160, 143, 140, 156, 154, 155]
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 100,
+ "character": 4
}
],
- "sources": [
+ "signatures": [
{
- "fileName": "packages/core/supabase-js/src/lib/types.ts",
- "line": 30,
- "character": 48,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/lib/types.ts#L30"
+ "id": 350,
+ "name": "deleteUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Delete a user. Requires a "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 100,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 351,
+ "name": "id",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user id you want to remove."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 352,
+ "name": "shouldSoftDelete",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If true, then the user will be soft-deleted from the auth schema. Soft deletion allows user identification from the hashed user ID but is not reversible.\nDefaults to false for backward compatibility.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
}
]
- }
- }
- },
- {
- "id": 1,
- "name": "createClient",
- "variant": "declaration",
- "kind": 64,
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a new Supabase Client."
- }
- ]
- },
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 27,
- "character": 13,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L27"
- }
- ],
- "signatures": [
+ },
{
- "id": 2,
- "name": "createClient",
- "variant": "signature",
- "kind": 4096,
+ "id": 322,
+ "name": "generateLink",
+ "variant": "declaration",
+ "kind": 2048,
"flags": {},
"sources": [
{
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 27,
- "character": 28,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L27"
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 51,
+ "character": 4
}
],
- "typeParameters": [
+ "signatures": [
{
- "id": 3,
- "name": "Database",
- "variant": "typeParam",
- "kind": 131072,
+ "id": 323,
+ "name": "generateLink",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
- "default": {
- "type": "intrinsic",
- "name": "any"
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Generates email links and OTPs to be sent via a custom email provider."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 324,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1047,
+ "name": "GenerateLinkParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1048,
+ "name": "GenerateLinkResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
}
- },
+ }
+ ]
+ },
+ {
+ "id": 342,
+ "name": "getUserById",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
{
- "id": 4,
- "name": "SchemaNameOrClientOptions",
- "variant": "typeParam",
- "kind": 131072,
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 343,
+ "name": "getUserById",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
- "type": {
- "type": "union",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
+ "comment": {
+ "summary": [
{
- "type": "reflection",
- "declaration": {
- "id": 5,
- "name": "__type",
- "variant": "declaration",
- "kind": 65536,
- "flags": {},
- "children": [
- {
- "id": 6,
- "name": "PostgrestVersion",
- "variant": "declaration",
- "kind": 1024,
- "flags": {},
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 31,
- "character": 8,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L31"
- }
- ],
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- }
- ],
- "groups": [
- {
- "title": "Properties",
- "children": [6]
- }
- ],
- "sources": [
- {
- "fileName": "packages/core/supabase-js/src/index.ts",
- "line": 31,
- "character": 6,
- "url": "https://github.com/supabase/supabase-js/blob/0b47058203ef5d5fc35a0f2a7e693aae3390e1b9/packages/core/supabase-js/src/index.ts#L31"
- }
- ]
- }
+ "kind": "text",
+ "text": "Get user by id."
}
]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 344,
+ "name": "uid",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's unique identifier\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
},
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- }
- ]
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
}
- },
+ }
+ ]
+ },
+ {
+ "id": 315,
+ "name": "inviteUserByEmail",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
{
- "id": 7,
- "name": "SchemaName",
- "variant": "typeParam",
- "kind": 131072,
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 316,
+ "name": "inviteUserByEmail",
+ "variant": "signature",
+ "kind": 4096,
"flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends an invite link to an email address."
+ }
+ ]
},
- "default": {
- "type": "conditional",
- "checkType": {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 317,
+ "name": "email",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email address of the user."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
},
- "extendsType": {
- "type": "intersection",
- "types": [
- {
- "type": "intrinsic",
- "name": "string"
- },
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
+ {
+ "id": 318,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Additional options to be included when inviting."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 319,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
+ "id": 320,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store additional metadata about the user. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.user_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " column."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 40,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
}
},
{
- "type": "literal",
- "value": "__InternalSupabase"
+ "id": 321,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL which will be appended to the email link sent to the user's email address. Once clicked the user will end up on this URL."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 42,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
}
],
- "name": "Exclude",
- "package": "typescript"
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [320, 321]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 38,
+ "character": 47
+ }
+ ]
}
- ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
},
- "trueType": {
- "type": "reference",
- "target": 4,
- "typeArguments": [
- {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- "falseType": {
- "type": "conditional",
- "checkType": {
- "type": "literal",
- "value": "public"
- },
- "extendsType": {
+ "typeArguments": [
+ {
"type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 328,
+ "name": "listUsers",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 329,
+ "name": "listUsers",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Get a list of users.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 330,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
{
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
+ "kind": "text",
+ "text": "An object which supports "
},
{
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- "trueType": {
- "type": "literal",
- "value": "public"
- },
- "falseType": {
- "type": "intersection",
- "types": [
+ "kind": "code",
+ "text": "`page`"
+ },
{
- "type": "intrinsic",
- "name": "string"
+ "kind": "text",
+ "text": " and "
},
{
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "reference",
- "target": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
- "qualifiedName": "Exclude"
- },
- "typeArguments": [
- {
- "type": "typeOperator",
- "operator": "keyof",
- "target": {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
- },
- {
- "type": "literal",
- "value": "__InternalSupabase"
- }
- ],
- "name": "Exclude",
- "package": "typescript"
+ "kind": "code",
+ "text": "`perPage`"
+ },
+ {
+ "kind": "text",
+ "text": " as numbers, to alter the paginated results."
}
]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1258,
+ "name": "PageParams",
+ "package": "@supabase/auth-js"
}
}
- }
- }
- ],
- "parameters": [
- {
- "id": 8,
- "name": "supabaseUrl",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 9,
- "name": "supabaseKey",
- "variant": "param",
- "kind": 32768,
- "flags": {},
- "type": {
- "type": "intrinsic",
- "name": "string"
- }
- },
- {
- "id": 10,
- "name": "options",
- "variant": "param",
- "kind": 32768,
- "flags": {
- "isOptional": true
- },
+ ],
"type": {
"type": "reference",
- "target": 138,
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
"typeArguments": [
{
- "type": "reference",
- "target": 7,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClientOptions",
- "package": "@supabase/supabase-js"
- }
- }
- ],
- "type": {
- "type": "reference",
- "target": 11,
- "typeArguments": [
- {
- "type": "reference",
- "target": 3,
- "name": "Database",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 4,
- "name": "SchemaNameOrClientOptions",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- },
- {
- "type": "reference",
- "target": 7,
- "name": "SchemaName",
- "package": "@supabase/supabase-js",
- "refersToTypeParameter": true
- }
- ],
- "name": "SupabaseClient",
- "package": "@supabase/supabase-js",
- "qualifiedName": "default"
- }
- }
- ]
- }
- ],
- "groups": [
- {
- "title": "Classes",
- "children": [11]
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 331,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 332,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 333,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 335,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 66,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 334,
+ "name": "users",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 65,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [335, 334]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 64,
+ "character": 14
+ }
+ ]
+ }
+ },
+ {
+ "type": "reference",
+ "target": 1251,
+ "name": "Pagination",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 336,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 68,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [332, 336]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 63,
+ "character": 44
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 337,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 338,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 70,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 339,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 340,
+ "name": "users",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 71,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "tuple"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [340]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 70,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 341,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 73,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [338, 341]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 69,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 308,
+ "name": "signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 309,
+ "name": "signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Removes a logged-in session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 310,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A valid, logged-in JWT."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 311,
+ "name": "scope",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The logout sope."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 312,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 313,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 30,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 314,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 31,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [313, 314]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 29,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 345,
+ "name": "updateUserById",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 346,
+ "name": "updateUserById",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates the user data."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 347,
+ "name": "uid",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 348,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The data you want to update.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 839,
+ "name": "AdminUserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [276]
+ },
+ {
+ "title": "Properties",
+ "children": [300, 296, 293, 294, 295]
+ },
+ {
+ "title": "Methods",
+ "children": [325, 349, 322, 342, 315, 328, 308, 345]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueAdminApi.d.ts",
+ "line": 4,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 361,
+ "name": "GoTrueClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 363,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 364,
+ "name": "GoTrueClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Create a new client for use in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 365,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 705,
+ "name": "GoTrueClientOptions",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 361,
+ "name": "GoTrueClient",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 367,
+ "name": "admin",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the GoTrue admin methods.\nThese methods should only be used in a trusted server-side environment."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 13,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 393,
+ "name": "autoRefreshTicker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 51,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/node/timers.d.ts",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ },
+ "name": "Timeout",
+ "package": "@types/node",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ }
+ ]
+ }
+ },
+ {
+ "id": 384,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 40,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 418,
+ "name": "broadcastChannel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Used to broadcast state change events to other tabs listening."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 75,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "BroadcastChannel"
+ },
+ "name": "BroadcastChannel",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 399,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 61,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 407,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 68,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 408,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 409,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 410,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 411,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 412,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 413,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 414,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 371,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 28,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 898,
+ "name": "AuthFlowType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 405,
+ "name": "hasCustomAuthorizationHeader",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 66,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 401,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 63,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 402,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 63,
+ "character": 23
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 403,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 64,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 404,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 398,
+ "name": "initializePromise",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Keeps track of the async client initialization.\nWhen null or not yet resolved the auth state is "
+ },
+ {
+ "kind": "code",
+ "text": "`unknown`"
+ },
+ {
+ "kind": "text",
+ "text": "\nOnce resolved the auth state is known and it's safe to call any further client methods.\nKeep extra care to never reject or throw uncaught errors"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 60,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1247,
+ "name": "InitializeResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 415,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 69,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 696,
+ "name": "LockFunc",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 416,
+ "name": "lockAcquired",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 70,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 419,
+ "name": "logDebugMessages",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 76,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 420,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 421,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 22
+ }
+ ],
+ "signatures": [
+ {
+ "id": 422,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 77,
+ "character": 22
+ }
+ ],
+ "parameters": [
+ {
+ "id": 423,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 424,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 388,
+ "name": "memoryStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 47,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 389,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 47,
+ "character": 29
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 390,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 48,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 391,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 368,
+ "name": "mfa",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the MFA methods."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1107,
+ "name": "GoTrueMFAApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 369,
+ "name": "oauth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Namespace for the OAuth 2.1 authorization server methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\nUsed to implement the authorization code flow on the consent page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 23,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1390,
+ "name": "AuthOAuthServerApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 417,
+ "name": "pendingInLock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 71,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 385,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 41,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 397,
+ "name": "refreshingDeferred",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 53,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/helpers.ts",
+ "qualifiedName": "Deferred"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1250,
+ "name": "CallRefreshTokenResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Deferred",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 392,
+ "name": "stateChangeEmitters",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
+ "qualifiedName": "Map"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Map",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 386,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 42,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 370,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The storage key used to identify the values saved in localStorage"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 27,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 406,
+ "name": "suppressGetSessionWarning",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 67,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 400,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 62,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 387,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 46,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 394,
+ "name": "visibilityChangedCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 395,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 42
+ }
+ ],
+ "signatures": [
+ {
+ "id": 396,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 52,
+ "character": 42
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 372,
+ "name": "jwks",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 18
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 18
+ }
+ ],
+ "getSignature": {
+ "id": 373,
+ "name": "jwks",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The JWKS used for verifying asymmetric JWTs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 374,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 375,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 33,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [375]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 32,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ "setSignature": {
+ "id": 376,
+ "name": "jwks",
+ "variant": "signature",
+ "kind": 1048576,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 18
+ }
+ ],
+ "parameters": [
+ {
+ "id": 377,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 378,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 379,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 36,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [379]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 35,
+ "character": 30
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ {
+ "id": 380,
+ "name": "jwks_cached_at",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 38,
+ "character": 18
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 39,
+ "character": 18
+ }
+ ],
+ "getSignature": {
+ "id": 381,
+ "name": "jwks_cached_at",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 38,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ "setSignature": {
+ "id": 382,
+ "name": "jwks_cached_at",
+ "variant": "signature",
+ "kind": 1048576,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 39,
+ "character": 18
+ }
+ ],
+ "parameters": [
+ {
+ "id": 383,
+ "name": "value",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ },
+ {
+ "id": 533,
+ "name": "_refreshSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 534,
+ "name": "_refreshSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 535,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 536,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 537,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 291,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [537]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 290,
+ "character": 47
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 522,
+ "name": "_setSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 523,
+ "name": "_setSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 524,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 525,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 526,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 278,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 527,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 279,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [526, 527]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 277,
+ "character": 42
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 546,
+ "name": "_signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 547,
+ "name": "_signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 548,
+ "name": "__namedParameters",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1262,
+ "name": "SignOut",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 549,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 550,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 317,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [550]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 316,
+ "character": 53
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 510,
+ "name": "_updateUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 511,
+ "name": "_updateUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 512,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 513,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 514,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 515,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 266,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [515]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 265,
+ "character": 64
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 441,
+ "name": "exchangeCodeForSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 442,
+ "name": "exchangeCodeForSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user by exchanging an Auth Code issued during the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 130,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 443,
+ "name": "authCode",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 644,
+ "name": "getClaims",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 645,
+ "name": "getClaims",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Extracts the JWT claims present in the access token by first verifying the\nJWT against the server's JSON Web Key Set endpoint\n"
+ },
+ {
+ "kind": "code",
+ "text": "`/.well-known/jwks.json`"
+ },
+ {
+ "kind": "text",
+ "text": " which is often cached, resulting in significantly\nfaster responses. Prefer this method over "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser"
+ },
+ {
+ "kind": "text",
+ "text": " which always\nsends a request to the Auth server for each JWT.\n\nIf the project is not using an asymmetric JWT signing key (like ECC or\nRSA) it always sends a request to the Auth server (similar to "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser"
+ },
+ {
+ "kind": "text",
+ "text": ") to verify the JWT."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 646,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An optional specific JWT you wish to verify, not the one you\n can obtain from "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getSession"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 647,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Various additional options that allow you to customize the\n behavior of this method."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 648,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 650,
+ "name": "allowExpired",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " the "
+ },
+ {
+ "kind": "code",
+ "text": "`exp`"
+ },
+ {
+ "kind": "text",
+ "text": " claim will not be validated against the current time."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 555,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 651,
+ "name": "jwks",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set, this JSON Web Key Set is going to have precedence over the cached value available on the server."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 557,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 652,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 653,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 558,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [653]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 557,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 649,
+ "name": "keys",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Please use options.jwks instead."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 553,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1290,
+ "name": "JWK",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [650, 651, 649]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 549,
+ "character": 38
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 654,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 655,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 561,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 656,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 657,
+ "name": "claims",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 562,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1286,
+ "name": "JwtPayload",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 658,
+ "name": "header",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 563,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1271,
+ "name": "JwtHeader",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 659,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 564,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [657, 658, 659]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 561,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 660,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 566,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [655, 660]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 560,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 661,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 662,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 568,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 663,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 569,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [662, 663]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 567,
+ "character": 8
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 664,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 665,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 571,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 666,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 572,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [665, 666]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 570,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 480,
+ "name": "getSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 481,
+ "name": "getSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the session, refreshing it if necessary.\n\nThe session returned can be null if the session is not detected which can happen in the event a user is not signed-in or has logged out.\n\n**IMPORTANT:** This method loads values directly from the storage attached\nto the client. If that storage is based on request cookies for example,\nthe values in it may not be authentic and therefore it's strongly advised\nagainst using this method and its results in such circumstances. A warning\nwill be emitted if this is detected. Use "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#getUser()"
+ },
+ {
+ "kind": "text",
+ "text": " instead."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 482,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 483,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 218,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 484,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 485,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 219,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [485]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 218,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 486,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 221,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [483, 486]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 217,
+ "character": 26
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 487,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 488,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 223,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 489,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 490,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 224,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [490]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 223,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 491,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 226,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [488, 491]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 222,
+ "character": 8
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 492,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 493,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 228,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 494,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 495,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 229,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [495]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 228,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 496,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 231,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [493, 496]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 227,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 500,
+ "name": "getUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 501,
+ "name": "getUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets the current user details if there is an existing session. This method\nperforms a network request to the Supabase Auth server, so the returned\nvalue is authentic and can be used to base authorization rules on."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 502,
+ "name": "jwt",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Takes in an optional access token JWT. If no JWT is provided, the JWT from the current session is used."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 587,
+ "name": "getUserIdentities",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 588,
+ "name": "getUserIdentities",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets all the identities linked to a user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 589,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 590,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 369,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 591,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 592,
+ "name": "identities",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 370,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [592]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 369,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 593,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 372,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [590, 593]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 368,
+ "character": 33
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 594,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 595,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 374,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 596,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 375,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [595, 596]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 373,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 426,
+ "name": "initialize",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 427,
+ "name": "initialize",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the client session either from the url or from storage.\nThis method is automatically called when instantiating the client, but should also be called\nmanually when checking for an error from an auth redirect (oauth, magiclink, password recovery, etc)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1247,
+ "name": "InitializeResult",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 597,
+ "name": "linkIdentity",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 381,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 385,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 598,
+ "name": "linkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Links an oauth identity to an existing user.\nThis method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 381,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 599,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 899,
+ "name": "SignInWithOAuthCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 777,
+ "name": "OAuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 600,
+ "name": "linkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Links an OIDC identity to an existing user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 385,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 601,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 551,
+ "name": "onAuthStateChange",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 552,
+ "name": "onAuthStateChange",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Receive a notification every time an auth event happens.\nSafe to use without an async function as callback."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 553,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A callback function to be invoked when an auth event happens."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 554,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 32
+ }
+ ],
+ "signatures": [
+ {
+ "id": 555,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 32
+ }
+ ],
+ "parameters": [
+ {
+ "id": 556,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 557,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 558,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 559,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 326,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 560,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 561,
+ "name": "subscription",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 327,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [561]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 326,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [559]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 325,
+ "character": 92
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 562,
+ "name": "onAuthStateChange",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Avoid using an async function inside "
+ },
+ {
+ "kind": "code",
+ "text": "`onAuthStateChange`"
+ },
+ {
+ "kind": "text",
+ "text": " as you might end\nup with a deadlock. The callback function runs inside an exclusive lock,\nso calling other Supabase Client APIs that also try to acquire the\nexclusive lock, might cause a deadlock. This behavior is observable across\ntabs. In the next major library version, this behavior will not be supported.\n\nReceive a notification every time an auth event happens."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Due to the possibility of deadlocks with async functions as callbacks, use the version without an async function."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 563,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A callback function to be invoked when an auth event happens."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 564,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 32
+ }
+ ],
+ "signatures": [
+ {
+ "id": 565,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 32
+ }
+ ],
+ "parameters": [
+ {
+ "id": 566,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 567,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 568,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 569,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 343,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 570,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 571,
+ "name": "subscription",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 344,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 852,
+ "name": "Subscription",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [571]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 343,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [569]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 342,
+ "character": 101
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 474,
+ "name": "reauthenticate",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 475,
+ "name": "reauthenticate",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a reauthentication OTP to the user's email or phone number.\nRequires the user to be signed-in."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 528,
+ "name": "refreshSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 529,
+ "name": "refreshSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns a new session, regardless of expiry status.\nTakes in an optional current session. If not passed in, then refreshSession() will attempt to retrieve it from getSession().\nIf the current session's refresh token is invalid, an error will be thrown."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 530,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The current session. If passed in, it must contain a refresh token."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 531,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 532,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 288,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [532]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 287,
+ "character": 36
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 477,
+ "name": "resend",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 478,
+ "name": "resend",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resends an existing signup confirmation email, email change email, SMS OTP or phone change OTP."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 479,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 995,
+ "name": "ResendParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 763,
+ "name": "AuthOtpResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 573,
+ "name": "resetPasswordForEmail",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 574,
+ "name": "resetPasswordForEmail",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a password reset request to an email address. This method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 575,
+ "name": "email",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email address of the user."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 576,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 577,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 579,
+ "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/dist/module/GoTrueClient.d.ts",
+ "line": 357,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 578,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL to send the user to after they click the password reset link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 356,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [579, 578]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 355,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 580,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 581,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 359,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 582,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 583,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 360,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [581, 583]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 358,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 584,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 585,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 362,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 586,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 363,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [585, 586]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 361,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 516,
+ "name": "setSession",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 517,
+ "name": "setSession",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sets the session data from the current session. If the current session is expired, setSession will take care of refreshing it to obtain a new session.\nIf the refresh token or access token in the current session is invalid, an error will be thrown."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 518,
+ "name": "currentSession",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The current session that minimally contains an access token and refresh token."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 519,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 520,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 274,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 521,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 275,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [520, 521]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 273,
+ "character": 31
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 429,
+ "name": "signInAnonymously",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 430,
+ "name": "signInAnonymously",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new anonymous user."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A session where the is_anonymous claim in the access token JWT set to true"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 431,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 862,
+ "name": "SignInAnonymouslyCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 462,
+ "name": "signInWithIdToken",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 463,
+ "name": "signInWithIdToken",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Allows signing in with an OIDC ID token. The authentication provider used\nshould be enabled and configured."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 464,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 768,
+ "name": "AuthTokenResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 438,
+ "name": "signInWithOAuth",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 439,
+ "name": "signInWithOAuth",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user via a third-party provider.\nThis method supports the PKCE flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 440,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 899,
+ "name": "SignInWithOAuthCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 777,
+ "name": "OAuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 465,
+ "name": "signInWithOtp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 176,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 466,
+ "name": "signInWithOtp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in a user using magiclink or a one-time password (OTP).\n\nIf the "
+ },
+ {
+ "kind": "code",
+ "text": "`{{ .ConfirmationURL }}`"
+ },
+ {
+ "kind": "text",
+ "text": " variable is specified in the email template, a magiclink will be sent.\nIf the "
+ },
+ {
+ "kind": "code",
+ "text": "`{{ .Token }}`"
+ },
+ {
+ "kind": "text",
+ "text": " variable is specified in the email template, an OTP will be sent.\nIf you're using phone sign-ins, only an OTP will be sent. You won't be able to send a magiclink for phone sign-ins.\n\nBe aware that you may get back an error message that will not distinguish\nbetween the cases where the account does not exist or, that the account\ncan only be accessed via social login.\n\nDo note that you will need to configure a Whatsapp sender on Twilio\nif you are using phone sign in with the 'whatsapp' channel. The whatsapp\nchannel is not supported on other providers\nat this time.\nThis method supports PKCE when an email is passed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 176,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 467,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 881,
+ "name": "SignInWithPasswordlessCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 763,
+ "name": "AuthOtpResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 435,
+ "name": "signInWithPassword",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 436,
+ "name": "signInWithPassword",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in an existing user with an email and password or phone and password.\n\nBe aware that you may get back an error message that will not distinguish\nbetween the cases where the account does not exist or that the\nemail/phone and password combination is wrong or that the account can only\nbe accessed via social login."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 437,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 876,
+ "name": "SignInWithPasswordCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 772,
+ "name": "AuthTokenResponsePassword",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 471,
+ "name": "signInWithSSO",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 195,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 472,
+ "name": "signInWithSSO",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Attempts a single-sign on using an enterprise Identity Provider. A\nsuccessful SSO attempt will redirect the current page to the identity\nprovider authorization page. The redirect URL is implementation and SSO\nprotocol specific.\n\nYou can use it by providing a SSO domain. Typically you can extract this\ndomain by asking users for their email address. If this domain is\nregistered on the Auth instance the redirect will use that organization's\ncurrently active SSO Identity Provider for the login.\n\nIf you have built an organization-specific login page, you can use the\norganization's SSO Identity Provider UUID directly instead."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 195,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 473,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1009,
+ "name": "SignInWithSSO",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 790,
+ "name": "SSOResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 444,
+ "name": "signInWithWeb3",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 445,
+ "name": "signInWithWeb3",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Signs in a user by verifying a message signed by the user's private key.\nSupports Ethereum (via Sign-In-With-Ethereum) & Solana (Sign-In-With-Solana) standards,\nboth of which derive from the EIP-4361 standard\nWith slight variation on Solana's side."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@reference",
+ "content": [
+ {
+ "kind": "text",
+ "text": "https://eips.ethereum.org/EIPS/eip-4361"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 446,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 972,
+ "name": "Web3Credentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 447,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 448,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 139,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 449,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 450,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 140,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 451,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 141,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [450, 451]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 139,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 452,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 143,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [448, 452]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 138,
+ "character": 58
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 453,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 454,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 145,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 455,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 456,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 146,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 457,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 147,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [456, 457]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 145,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 458,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 149,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [454, 458]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 144,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 541,
+ "name": "signOut",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 542,
+ "name": "signOut",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Inside a browser context, "
+ },
+ {
+ "kind": "code",
+ "text": "`signOut()`"
+ },
+ {
+ "kind": "text",
+ "text": " will remove the logged in user from the browser session and log them out - removing all items from localstorage and then trigger a "
+ },
+ {
+ "kind": "code",
+ "text": "`\"SIGNED_OUT\"`"
+ },
+ {
+ "kind": "text",
+ "text": " event.\n\nFor server-side management, you can revoke all refresh tokens for a user by passing a user's JWT through to "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.api.signOut(JWT: string)`"
+ },
+ {
+ "kind": "text",
+ "text": ".\nThere is no way to revoke a user's access token jwt until it expires. It is recommended to set a shorter expiry on the jwt for this reason.\n\nIf using "
+ },
+ {
+ "kind": "code",
+ "text": "`others`"
+ },
+ {
+ "kind": "text",
+ "text": " scope, no "
+ },
+ {
+ "kind": "code",
+ "text": "`SIGNED_OUT`"
+ },
+ {
+ "kind": "text",
+ "text": " event is fired!"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 543,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1262,
+ "name": "SignOut",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 544,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 545,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 314,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [545]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 313,
+ "character": 40
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 432,
+ "name": "signUp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 112,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 433,
+ "name": "signUp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new user.\n\nBe aware that if a user account exists in the system you may get back an\nerror message that attempts to hide this information from the user.\nThis method has support for PKCE via email signups. The PKCE flow cannot be used when autoconfirm is enabled."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A logged-in session if the server has \"autoconfirm\" ON"
+ }
+ ]
+ },
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "A user if the server has \"autoconfirm\" OFF"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 112,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 434,
+ "name": "credentials",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 868,
+ "name": "SignUpWithPasswordCredentials",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 625,
+ "name": "startAutoRefresh",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 457,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 626,
+ "name": "startAutoRefresh",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Starts an auto-refresh process in the background. The session is checked\nevery few seconds. Close to the time of expiration a process is started to\nrefresh the session. If refreshing fails it will be retried for as long as\nnecessary.\n\nIf you set the "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClientOptions#autoRefreshToken",
+ "target": 714
+ },
+ {
+ "kind": "text",
+ "text": " you don't need\nto call this function, it will be called for you.\n\nOn browsers the refresh process works only when the tab/window is in the\nforeground to conserve resources as well as prevent race conditions and\nflooding auth with requests. If you call this method any managed\nvisibility change callback will be removed and you must manage visibility\nchanges on your own.\n\nOn non-browser platforms the refresh process works *continuously* in the\nbackground, which may not be desirable. You should hook into your\nplatform's foreground indication mechanism and call these methods\nappropriately to conserve resources.\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "#stopAutoRefresh"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 457,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 627,
+ "name": "stopAutoRefresh",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 466,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 628,
+ "name": "stopAutoRefresh",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Stops an active auto refresh process running in the background (if any).\n\nIf you call this method any managed visibility change callback will be\nremoved and you must manage visibility changes on your own.\n\nSee "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#startAutoRefresh"
+ },
+ {
+ "kind": "text",
+ "text": " for more details."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 466,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 604,
+ "name": "unlinkIdentity",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 605,
+ "name": "unlinkIdentity",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unlinks an identity from a user by deleting it. The user will no longer be able to sign in with that identity once it's unlinked."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 606,
+ "name": "identity",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 607,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 608,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 392,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 609,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 610,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 393,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [608, 610]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 391,
+ "character": 52
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 611,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 612,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 395,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 613,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 396,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [612, 613]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 394,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 504,
+ "name": "updateUser",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 505,
+ "name": "updateUser",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates user data for a logged in user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 506,
+ "name": "attributes",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 507,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 508,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 509,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 263,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [509]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 262,
+ "character": 53
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 793,
+ "name": "UserResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 468,
+ "name": "verifyOtp",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 180,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 469,
+ "name": "verifyOtp",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Log in a user given a User supplied OTP or TokenHash received through mobile or email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 180,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 470,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 973,
+ "name": "VerifyOtpParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 754,
+ "name": "AuthResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [363]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 367, 393, 384, 418, 399, 407, 371, 405, 401, 398, 415, 416, 419, 420, 388, 368, 369,
+ 417, 385, 397, 392, 386, 370, 406, 400, 387, 394
+ ]
+ },
+ {
+ "title": "Accessors",
+ "children": [372, 380]
+ },
+ {
+ "title": "Methods",
+ "children": [
+ 533, 522, 546, 510, 441, 644, 480, 500, 587, 426, 597, 551, 474, 528, 477, 573, 516,
+ 429, 462, 438, 465, 435, 471, 444, 541, 432, 625, 627, 604, 504, 468
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/GoTrueClient.d.ts",
+ "line": 6,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 677,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 678,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 679,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 680,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 677,
+ "name": "NavigatorLockAcquireTimeoutError",
+ "package": "@supabase/auth-js"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.constructor"
+ }
+ }
+ ],
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.constructor"
+ }
+ },
+ {
+ "id": 681,
+ "name": "isAcquireTimeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true,
+ "isInherited": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 16,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": true
+ },
+ "defaultValue": "true",
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "LockAcquireTimeoutError.isAcquireTimeout"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [678]
+ },
+ {
+ "title": "Properties",
+ "children": [681]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 19,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError"
+ },
+ "name": "LockAcquireTimeoutError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ },
+ {
+ "id": 52,
+ "name": "PostgrestError",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Error format\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes",
+ "target": "https://postgrest.org/en/stable/api.html?highlight=options#errors-and-http-status-codes"
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 53,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 54,
+ "name": "PostgrestError",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 55,
+ "name": "context",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 56,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 60,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 14,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 58,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 12,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 59,
+ "name": "hint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 13,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 57,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 11,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [60, 58, 59, 57]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 10,
+ "character": 25
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 52,
+ "name": "PostgrestError",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ },
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "target": -1,
+ "name": "Error.constructor"
+ }
+ },
+ {
+ "id": 63,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 61,
+ "name": "details",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 7,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 62,
+ "name": "hint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 8,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [53]
+ },
+ {
+ "title": "Properties",
+ "children": [63, 61, 62]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/PostgrestError.d.ts",
+ "line": 6,
+ "character": 21
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ ]
+ },
+ {
+ "id": 1593,
+ "name": "RealtimeChannel",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A channel is the basic building block of Realtime\nand narrows the scope of data flow to subscribed clients.\nYou can think of a channel as a chatroom where participants are able to see who's online\nand send and receive messages."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1594,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1595,
+ "name": "RealtimeChannel",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1596,
+ "name": "topic",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1597,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1598,
+ "name": "socket",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1602,
+ "name": "bindings",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 145,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1603,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 145,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1604,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 146,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1605,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1606,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1612,
+ "name": "callback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 151,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1608,
+ "name": "filter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 148,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1609,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 148,
+ "character": 20
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1610,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 149,
+ "character": 16
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1611,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1613,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 152,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1607,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 147,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1612, 1608, 1613, 1607]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 146,
+ "character": 23
+ }
+ ]
+ }
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1621,
+ "name": "broadcastEndpointURL",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 162,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1616,
+ "name": "joinedOnce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 157,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1617,
+ "name": "joinPush",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 158,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1600,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 143,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1620,
+ "name": "presence",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 161,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1576,
+ "name": "RealtimePresence",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1623,
+ "name": "private",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1619,
+ "name": "pushBuffer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/push.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Push",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 1618,
+ "name": "rejoinTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 159,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/timer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Timer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1601,
+ "name": "socket",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 144,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1615,
+ "name": "state",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CHANNEL_STATES"
+ },
+ "name": "CHANNEL_STATES",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1622,
+ "name": "subTopic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 163,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1614,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 155,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1599,
+ "name": "topic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Topic name can be any string."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1850,
+ "name": "httpSend",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1851,
+ "name": "httpSend",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a broadcast message explicitly via REST API.\n\nThis method always uses the REST API endpoint regardless of WebSocket connection state.\nUseful when you want to guarantee REST delivery or when gradually migrating from implicit REST fallback."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Promise resolving to object with success status, and error details if failed"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1852,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the broadcast event"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1853,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Payload to be sent (required)"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 1854,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options including timeout"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1855,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1856,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 288,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1856]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 287,
+ "character": 49
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1857,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1858,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 290,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": true
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1858]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 289,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1859,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1862,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 294,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1861,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 293,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1860,
+ "name": "success",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 292,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": false
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1862, 1861, 1860]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 291,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1655,
+ "name": "on",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1656,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1657,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1658,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1659,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1660,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 185,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "sync"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1660]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 184,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1661,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1662,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 186,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1663,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 186,
+ "character": 17
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1664,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1665,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1666,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 187,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1667,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 188,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1668,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1669,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1670,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1671,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1672,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 190,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "join"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1672]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 189,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1673,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1674,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 191,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1675,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 191,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1676,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2088,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1665,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceJoinPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1677,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1678,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1679,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 192,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1680,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 193,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1681,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1682,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "presence"
+ }
+ },
+ {
+ "id": 1683,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1684,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1685,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 195,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "leave"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1685]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 194,
+ "character": 58
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1686,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1687,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 196,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1688,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 196,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1689,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2098,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1678,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceLeavePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1690,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1691,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1692,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 197,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1693,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 198,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1694,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1695,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1696,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "*"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1697,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1698,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 199,
+ "character": 156
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1699,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 199,
+ "character": 156
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1700,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2054,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1691,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresChangesPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1701,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1702,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1703,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 200,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1704,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 201,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1705,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1706,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1707,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "INSERT"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1708,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1709,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 202,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1710,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 202,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1711,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2059,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1702,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1712,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1713,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1714,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 203,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1715,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 204,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1716,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1717,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1718,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "UPDATE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1719,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1720,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 205,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1721,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 205,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1722,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2069,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1713,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresUpdatePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1723,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1724,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1725,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 206,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1726,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 207,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1727,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1728,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ },
+ {
+ "id": 1729,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2047,
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ],
+ "name": "RealtimePostgresChangesFilter",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1730,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1731,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 208,
+ "character": 159
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1732,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 208,
+ "character": 159
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1733,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2078,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1724,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1734,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The following is placed here to display on supabase.com/docs/reference/javascript/subscribe."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1735,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of \"broadcast\", \"presence\", or \"postgres_changes\"."
+ }
+ ]
+ },
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1736,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Custom object specific to the Realtime feature detailing which payloads to receive."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1737,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1738,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 216,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1738]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 215,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1739,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Function to be invoked when event handler is triggered."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1740,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1741,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1742,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1743,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1745,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 219,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1746,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 220,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1747,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1749,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 222,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1748,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 221,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1749, 1748]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 220,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1744,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 218,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1745, 1746, 1744]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 217,
+ "character": 27
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1750,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 224,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1751,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1752,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1753,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1754,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 226,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1755,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 227,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1756,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1757,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1758,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1759,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1760,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 229,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1760]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 228,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1761,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1762,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1763,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1764,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1765,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1767,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 232,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1768,
+ "name": "meta",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 233,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1769,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1771,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 235,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1770,
+ "name": "replayed",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 234,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1771, 1770]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 233,
+ "character": 15
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1772,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 237,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1753,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 1766,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 231,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1767, 1768, 1772, 1766]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 230,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1773,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1774,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1775,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1776,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1777,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1778,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 240,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2124,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1778]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 239,
+ "character": 94
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1779,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1780,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1781,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1782,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1783,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1785,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 243,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2124,
+ "name": "ALL",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
+ }
+ },
+ {
+ "id": 1786,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 244,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1774,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1784,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 242,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1785, 1786, 1784]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 241,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1787,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1788,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1789,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 246,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1790,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 247,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1791,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1792,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1793,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1794,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1795,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 249,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2125,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1795]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 248,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1796,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1797,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1798,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1799,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1800,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1802,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 252,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2125,
+ "name": "INSERT",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
+ }
+ },
+ {
+ "id": 1803,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 253,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastInsertPayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1788,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastInsertPayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1801,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 251,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1802, 1803, 1801]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 250,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1804,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1805,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1806,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 255,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1807,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 256,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1808,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1809,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1810,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1811,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1812,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 258,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2126,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1812]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 257,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1813,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1814,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1815,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1816,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1817,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1819,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 261,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2126,
+ "name": "UPDATE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
+ }
+ },
+ {
+ "id": 1820,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 262,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastUpdatePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1805,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastUpdatePayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1818,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 260,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1819, 1820, 1818]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 259,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1821,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1822,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1823,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 264,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1824,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 265,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1825,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1826,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ },
+ {
+ "id": 1827,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1828,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1829,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 267,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2127,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1829]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 266,
+ "character": 59
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1830,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1831,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1832,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1833,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1834,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1836,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 270,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2127,
+ "name": "DELETE",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
+ }
+ },
+ {
+ "id": 1837,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 271,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeBroadcastDeletePayload"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1822,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimeBroadcastDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1835,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 269,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "broadcast"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1836, 1837, 1835]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 268,
+ "character": 27
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1838,
+ "name": "on",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates an event handler that listens to changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1839,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1840,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 273,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1841,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 274,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1842,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1843,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "literal",
+ "value": "system"
+ }
+ },
+ {
+ "id": 1844,
+ "name": "filter",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1845,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ },
+ {
+ "id": 1846,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1847,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 275,
+ "character": 70
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1848,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 275,
+ "character": 70
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1849,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1632,
+ "name": "presenceState",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1633,
+ "name": "presenceState",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 4
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1634,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1635,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 170,
+ "character": 28
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1636,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 171,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1637,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1638,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {}
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2108,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1634,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePresenceState",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1863,
+ "name": "send",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1864,
+ "name": "send",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a message into the channel."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1865,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Arguments to send to channel"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1866,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1868,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the event being sent"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 307,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1869,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Payload to be sent"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 308,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 1867,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of event to send"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 306,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "broadcast"
+ },
+ {
+ "type": "literal",
+ "value": "presence"
+ },
+ {
+ "type": "literal",
+ "value": "postgres_changes"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1868, 1869, 1867]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 305,
+ "character": 15
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1870,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 309,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1871,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1872,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options to be used during the send process"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1873,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 310,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1874,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 311,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1875,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1624,
+ "name": "subscribe",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1625,
+ "name": "subscribe",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Subscribe registers your client with the server"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1626,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1627,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 25
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1628,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 169,
+ "character": 25
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1629,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2132,
+ "name": "REALTIME_SUBSCRIBE_STATES",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1630,
+ "name": "err",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1631,
+ "name": "timeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1885,
+ "name": "teardown",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 331,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1886,
+ "name": "teardown",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Teardown the channel.\n\nDestroys and stops related timers."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 331,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1639,
+ "name": "track",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1640,
+ "name": "track",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1641,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1642,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 173,
+ "character": 19
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1643,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 174,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1644,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1645,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1646,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 175,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1647,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 176,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1648,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1882,
+ "name": "unsubscribe",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1883,
+ "name": "unsubscribe",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Leaves the channel.\n\nUnsubscribes from server events, and instructs channel to terminate on server.\nTriggers onClose() hooks.\n\nTo receive leave acknowledgements, use the a "
+ },
+ {
+ "kind": "code",
+ "text": "`receive`"
+ },
+ {
+ "kind": "text",
+ "text": " hook to bind to the server ack, ie:\nchannel.unsubscribe().receive(\"ok\", () => alert(\"left!\") )"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 325,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1884,
+ "name": "timeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1649,
+ "name": "untrack",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1650,
+ "name": "untrack",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1651,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1652,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 178,
+ "character": 19
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1653,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 179,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1654,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1876,
+ "name": "updateJoinPayload",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1877,
+ "name": "updateJoinPayload",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1878,
+ "name": "payload",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1879,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 313,
+ "character": 31
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1880,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 314,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1881,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1594]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 1602, 1621, 1616, 1617, 1600, 1620, 1623, 1619, 1618, 1601, 1615, 1622, 1614, 1599
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [1850, 1655, 1632, 1863, 1624, 1885, 1639, 1882, 1649, 1876]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 140,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 1902,
+ "name": "RealtimeClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1903,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1904,
+ "name": "RealtimeClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the Socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1905,
+ "name": "endPoint",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The string WebSocket endpoint, ie, \"ws://example.com/socket\", \"wss://example.com\", \"/socket\" (inherited host & protocol)"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1906,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 2011,
+ "name": "RealtimeClientOptions",
+ "package": "@supabase/realtime-js",
+ "highlightedProperties": {
+ "transport": [
+ {
+ "kind": "text",
+ "text": "The Websocket Transport, for example WebSocket. This can be a custom implementation"
+ }
+ ],
+ "timeout": [
+ {
+ "kind": "text",
+ "text": "The default timeout in milliseconds to trigger push timeouts."
+ }
+ ],
+ "params": [
+ {
+ "kind": "text",
+ "text": "The optional params to pass when connecting."
+ }
+ ],
+ "headers": [
+ {
+ "kind": "text",
+ "text": "Deprecated: headers cannot be set on websocket connections and this option will be removed in the future."
+ }
+ ],
+ "heartbeatIntervalMs": [
+ {
+ "kind": "text",
+ "text": "The millisec interval to send a heartbeat message."
+ }
+ ],
+ "heartbeatCallback": [
+ {
+ "kind": "text",
+ "text": "The optional function to handle heartbeat status."
+ }
+ ],
+ "logger": [
+ {
+ "kind": "text",
+ "text": "The optional function for specialized logging, ie: logger: (kind, msg, data) => { console.log("
+ },
+ {
+ "kind": "code",
+ "text": "`${kind}: ${msg}`"
+ },
+ {
+ "kind": "text",
+ "text": ", data) }"
+ }
+ ],
+ "logLevel": [
+ {
+ "kind": "text",
+ "text": "Sets the log level for Realtime"
+ }
+ ],
+ "encode": [
+ {
+ "kind": "text",
+ "text": "The function to encode outgoing messages. Defaults to JSON: (payload, callback) => callback(JSON.stringify(payload))"
+ }
+ ],
+ "decode": [
+ {
+ "kind": "text",
+ "text": "The function to decode incoming messages. Defaults to Serializer's decode."
+ }
+ ],
+ "reconnectAfterMs": [
+ {
+ "kind": "text",
+ "text": "he optional function that returns the millsec reconnect interval. Defaults to stepped backoff off."
+ }
+ ],
+ "worker": [
+ {
+ "kind": "text",
+ "text": "Use Web Worker to set a side flow. Defaults to false."
+ }
+ ],
+ "workerUrl": [
+ {
+ "kind": "text",
+ "text": "The URL of the worker script. Defaults to https://realtime.supabase.com/worker.js that includes a heartbeat event call to keep the connection alive."
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1953,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1954,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1955,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 91,
+ "character": 18
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1907,
+ "name": "accessTokenValue",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1908,
+ "name": "apiKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 57,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1909,
+ "name": "channels",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 58,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 1936,
+ "name": "conn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1934,
+ "name": "decode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 79,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1933,
+ "name": "encode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 78,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1910,
+ "name": "endPoint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 59,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1945,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1946,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1947,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1948,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1949,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1950,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1951,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1952,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1912,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": [
+ {
+ "kind": "text",
+ "text": "headers cannot be set on websocket connections"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 62,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1913,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 62,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1914,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 63,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1915,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1925,
+ "name": "heartbeatCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1926,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1927,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 73,
+ "character": 23
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1928,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1922,
+ "name": "heartbeatIntervalMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 70,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1923,
+ "name": "heartbeatTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 71,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/node/timers.d.ts",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ },
+ "name": "Timeout",
+ "package": "@types/node",
+ "qualifiedName": "__global.NodeJS.Timeout"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1911,
+ "name": "httpEndpoint",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 60,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1931,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 76,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1932,
+ "name": "logLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 77,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1916,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1917,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 65,
+ "character": 13
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1918,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 66,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1919,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1924,
+ "name": "pendingHeartbeatRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 72,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1935,
+ "name": "reconnectAfterMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 80,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1930,
+ "name": "reconnectTimer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 75,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/timer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Timer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1929,
+ "name": "ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 74,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1937,
+ "name": "sendBuffer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 82,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1938,
+ "name": "serializer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/serializer.ts",
+ "qualifiedName": "default"
+ },
+ "name": "Serializer",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1939,
+ "name": "stateChangeCallbacks",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1940,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1942,
+ "name": "close",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 86,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1943,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 87,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1944,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 88,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ },
+ {
+ "id": 1941,
+ "name": "open",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 85,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1942, 1943, 1944, 1941]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 84,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1920,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 68,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1921,
+ "name": "transport",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 69,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 2204,
+ "name": "WebSocketLikeConstructor",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1956,
+ "name": "worker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 92,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1958,
+ "name": "workerRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Worker"
+ },
+ "name": "Worker",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1957,
+ "name": "workerUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 93,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1990,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1991,
+ "name": "channel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1992,
+ "name": "topic",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1993,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1962,
+ "name": "connect",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1963,
+ "name": "connect",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Connects the socket, unless already connected."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 121,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1982,
+ "name": "connectionState",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1983,
+ "name": "connectionState",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the current state of the socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 156,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CONNECTION_STATE"
+ },
+ "name": "CONNECTION_STATE",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1966,
+ "name": "disconnect",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1967,
+ "name": "disconnect",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Disconnects the socket."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 133,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1968,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A numeric status code to send on disconnect."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1969,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom reason for the disconnect."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1964,
+ "name": "endpointURL",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1965,
+ "name": "endpointURL",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the URL of the websocket."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "string The URL of the websocket."
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2008,
+ "name": "flushSendBuffer",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 194,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2009,
+ "name": "flushSendBuffer",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Flushes send buffer"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 194,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1970,
+ "name": "getChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1971,
+ "name": "getChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns all created channels"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1984,
+ "name": "isConnected",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1985,
+ "name": "isConnected",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " is the connection is open."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1986,
+ "name": "isConnecting",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1987,
+ "name": "isConnecting",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " if the connection is currently connecting."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 164,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1988,
+ "name": "isDisconnecting",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 168,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1989,
+ "name": "isDisconnecting",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " if the connection is currently disconnecting."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 168,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1977,
+ "name": "log",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 152,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1978,
+ "name": "log",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Logs the message.\n\nFor customized logging, "
+ },
+ {
+ "kind": "code",
+ "text": "`this.logger`"
+ },
+ {
+ "kind": "text",
+ "text": " can be overridden."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 152,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1979,
+ "name": "kind",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1980,
+ "name": "msg",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1981,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2002,
+ "name": "onHeartbeat",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2003,
+ "name": "onHeartbeat",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2004,
+ "name": "callback",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2005,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 26
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2006,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 190,
+ "character": 26
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2007,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1994,
+ "name": "push",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 175,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1995,
+ "name": "push",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Push out a message if the socket is connected.\n\nIf the socket is not connected, the message gets enqueued within a local buffer, and sent out when a connection is next established."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 175,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1996,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2040,
+ "name": "RealtimeMessage",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1975,
+ "name": "removeAllChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 146,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1976,
+ "name": "removeAllChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes all channels"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 146,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1972,
+ "name": "removeChannel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1973,
+ "name": "removeChannel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes a single channel"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 142,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1974,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A RealtimeChannel instance"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "package": "@supabase/realtime-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2000,
+ "name": "sendHeartbeat",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 189,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2001,
+ "name": "sendHeartbeat",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sends a heartbeat message if the socket is connected."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 189,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1997,
+ "name": "setAuth",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 185,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1998,
+ "name": "setAuth",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sets the JWT access token used for channel subscription authorization and Realtime RLS.\n\nIf param is null it will use the "
+ },
+ {
+ "kind": "code",
+ "text": "`accessToken`"
+ },
+ {
+ "kind": "text",
+ "text": " callback function or the token set on the client.\n\nOn callback used, it will set the value of the token internal to the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 185,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1999,
+ "name": "token",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A JWT string to override the token set on the client."
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1903]
+ },
+ {
+ "title": "Properties",
+ "children": [
+ 1953, 1907, 1908, 1909, 1936, 1934, 1933, 1910, 1945, 1912, 1925, 1922, 1923, 1911,
+ 1931, 1932, 1916, 1924, 1935, 1930, 1929, 1937, 1938, 1939, 1920, 1921, 1956, 1958, 1957
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [
+ 1990, 1962, 1982, 1966, 1964, 2008, 1970, 1984, 1986, 1988, 1977, 2002, 1994, 1975,
+ 1972, 2000, 1997
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 55,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 1576,
+ "name": "RealtimePresence",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 1577,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1578,
+ "name": "RealtimePresence",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Initializes the Presence."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 65,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1579,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The RealtimeChannel"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1580,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The options,\n for example "
+ },
+ {
+ "kind": "code",
+ "text": "`{events: {state: 'state', diff: 'diff'}}`"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOpts"
+ },
+ "name": "PresenceOpts",
+ "package": "@types/phoenix"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1576,
+ "name": "RealtimePresence",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1586,
+ "name": "caller",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1587,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1588,
+ "name": "onJoin",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 54,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOnJoinCallback"
+ },
+ "name": "PresenceOnJoinCallback",
+ "package": "@types/phoenix"
+ }
+ },
+ {
+ "id": 1589,
+ "name": "onLeave",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 55,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/@types/phoenix/index.d.ts",
+ "qualifiedName": "PresenceOnLeaveCallback"
+ },
+ "name": "PresenceOnLeaveCallback",
+ "package": "@types/phoenix"
+ }
+ },
+ {
+ "id": 1590,
+ "name": "onSync",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1591,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 16
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1592,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 56,
+ "character": 16
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1588, 1589, 1590]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 53,
+ "character": 12
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1581,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 48,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 1585,
+ "name": "enabled",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 52,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1584,
+ "name": "joinRef",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1583,
+ "name": "pendingDiffs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RawPresenceDiff"
+ },
+ "name": "RawPresenceDiff",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 1582,
+ "name": "state",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 49,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2108,
+ "name": "RealtimePresenceState",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [1577]
+ },
+ {
+ "title": "Properties",
+ "children": [1586, 1581, 1585, 1584, 1583, 1582]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 47,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 112,
+ "name": "SupabaseClient",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Client.\n\nAn isomorphic Javascript client for interacting with Postgres."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 113,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 105,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 114,
+ "name": "SupabaseClient",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Create a new client for use in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 105,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L105"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 115,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 116,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 117,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 118,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [118]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 119,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 120,
+ "name": "Schema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "objectType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 121,
+ "name": "ClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 122,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 123,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [123]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 124,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 125,
+ "name": "__InternalSupabase",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 126,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 127,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 47,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [127]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 45,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [125]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "falseType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 128,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 129,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "12"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [129]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ]
+ }
+ }
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 130,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 131,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 42,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [131]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 40,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 132,
+ "name": "supabaseUrl",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 133,
+ "name": "supabaseKey",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 134,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 242,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClientOptions",
+ "package": "@supabase/supabase-js",
+ "highlightedProperties": {
+ "realtime": [
+ {
+ "kind": "text",
+ "text": "Options passed along to realtime-js constructor."
+ }
+ ],
+ "storage": [
+ {
+ "kind": "text",
+ "text": "Options passed along to the storage-js constructor."
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 112,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClient",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 153,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 154,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 155,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 88,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L88"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 135,
+ "name": "auth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Auth allows you to create and manage user sessions for access to data that is secured by access policies."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 73,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L73"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/SupabaseAuthClient.ts",
+ "qualifiedName": "SupabaseAuthClient"
+ },
+ "name": "SupabaseAuthClient",
+ "package": "@supabase/supabase-js"
+ }
+ },
+ {
+ "id": 139,
+ "name": "authUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 81,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L81"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 152,
+ "name": "changedAccessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 87,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L87"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 144,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true,
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 86,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L86"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 145,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ },
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 146,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 29329,
+ "character": 17
+ }
+ ],
+ "parameters": [
+ {
+ "id": 147,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInfo"
+ },
+ "name": "RequestInfo",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 148,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 149,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "[MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "node_modules/@types/node/globals.d.ts",
+ "line": 289,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 150,
+ "name": "input",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Request"
+ },
+ "name": "Request",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 151,
+ "name": "init",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "RequestInit"
+ },
+ "name": "RequestInit",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Response"
+ },
+ "name": "Response",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 141,
+ "name": "functionsUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 83,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L83"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 156,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 90,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L90"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 136,
+ "name": "realtime",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 74,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L74"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1902,
+ "name": "RealtimeClient",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 138,
+ "name": "realtimeUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 80,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L80"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 142,
+ "name": "rest",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 84,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L84"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestClient.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestClient",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 137,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Storage allows you to manage user-generated content, such as photos or videos."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 78,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L78"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../storage-js/src/StorageClient.ts",
+ "qualifiedName": "StorageClient"
+ },
+ "name": "StorageClient",
+ "package": "@supabase/storage-js"
+ }
+ },
+ {
+ "id": 143,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 85,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L85"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 140,
+ "name": "storageUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 82,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L82"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 158,
+ "name": "supabaseKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase Key which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 107,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L107"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 157,
+ "name": "supabaseUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isProtected": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The unique Supabase URL which is supplied when you create a new project in your project dashboard."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 106,
+ "character": 14,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L106"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 159,
+ "name": "functions",
+ "variant": "declaration",
+ "kind": 262144,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 180,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L180"
+ }
+ ],
+ "getSignature": {
+ "id": 160,
+ "name": "functions",
+ "variant": "signature",
+ "kind": 524288,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Supabase Functions allows you to deploy and invoke edge functions."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 180,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L180"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../functions-js/src/FunctionsClient.ts",
+ "qualifiedName": "FunctionsClient"
+ },
+ "name": "FunctionsClient",
+ "package": "@supabase/functions-js"
+ }
+ }
+ },
+ {
+ "id": 186,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 294,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 187,
+ "name": "channel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a Realtime channel with Broadcast, Presence, and Postgres Changes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 294,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L294"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 188,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 189,
+ "name": "opts",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The options to pass to the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1887,
+ "name": "RealtimeChannelOptions",
+ "package": "@supabase/realtime-js"
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 161,
+ "name": "from",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Perform a query on a table or a view."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@param",
+ "name": "relation",
+ "content": [
+ {
+ "kind": "text",
+ "text": "The table or view name to query"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 188,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L188"
+ },
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 192,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L192"
+ },
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 200,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L200"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 162,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 188,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L188"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 163,
+ "name": "TableName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 164,
+ "name": "Table",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericTable"
+ },
+ "name": "GenericTable",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 165,
+ "name": "relation",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 163,
+ "name": "TableName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestQueryBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 164,
+ "name": "Table",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 163,
+ "name": "TableName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestQueryBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 166,
+ "name": "from",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 192,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L192"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 167,
+ "name": "ViewName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 168,
+ "name": "View",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericView"
+ },
+ "name": "GenericView",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 169,
+ "name": "relation",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 167,
+ "name": "ViewName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestQueryBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 168,
+ "name": "View",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 167,
+ "name": "ViewName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestQueryBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 190,
+ "name": "getChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 301,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 191,
+ "name": "getChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns all Realtime channels."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 301,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L301"
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 195,
+ "name": "removeAllChannels",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 318,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 196,
+ "name": "removeAllChannels",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes all Realtime channels from Realtime client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 318,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L318"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 192,
+ "name": "removeChannel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 311,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 193,
+ "name": "removeChannel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unsubscribes and removes Realtime channel from Realtime client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 311,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L311"
+ }
+ ],
+ "parameters": [
+ {
+ "id": 194,
+ "name": "channel",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The name of the Realtime channel."
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 1593,
+ "name": "RealtimeChannel",
+ "package": "@supabase/realtime-js",
+ "qualifiedName": "default"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "error"
+ },
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 174,
+ "name": "rpc",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 247,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 175,
+ "name": "rpc",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Perform a function call."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 247,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L247"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 176,
+ "name": "FnName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 177,
+ "name": "Args",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ },
+ "default": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ },
+ {
+ "id": 178,
+ "name": "FilterBuilder",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/rpc.ts",
+ "qualifiedName": "RpcFunctionNotFound"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RpcFunctionNotFound",
+ "package": "@supabase/supabase-js"
+ },
+ "default": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/rpc.ts",
+ "qualifiedName": "GetRpcFunctionFilterBuilderByArgs"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 177,
+ "name": "Args",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "GetRpcFunctionFilterBuilderByArgs",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 179,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The function name to call"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 176,
+ "name": "FnName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 180,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The arguments to pass to the function call"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 177,
+ "name": "Args",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "defaultValue": "..."
+ },
+ {
+ "id": 181,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Named parameters"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 182,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 185,
+ "name": "count",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Count algorithm to use to count rows returned by the\nfunction. Only applicable for [set-returning\nfunctions](https://www.postgresql.org/docs/current/functions-srf.html).\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"exact\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Exact but slow count algorithm. Performs a "
+ },
+ {
+ "kind": "code",
+ "text": "`COUNT(*)`"
+ },
+ {
+ "kind": "text",
+ "text": " under the\nhood.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"planned\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Approximated but fast count algorithm. Uses the Postgres\nstatistics under the hood.\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`\"estimated\"`"
+ },
+ {
+ "kind": "text",
+ "text": ": Uses exact count for low numbers and planned count for high\nnumbers."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 261,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L261"
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "exact"
+ },
+ {
+ "type": "literal",
+ "value": "planned"
+ },
+ {
+ "type": "literal",
+ "value": "estimated"
+ }
+ ]
+ }
+ },
+ {
+ "id": 184,
+ "name": "get",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ", the function will be called with\nread-only access mode."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 260,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L260"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 183,
+ "name": "head",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " will not be returned.\nUseful if you only need the count."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 259,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L259"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [185, 184, 183]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 258,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L258"
+ }
+ ]
+ }
+ },
+ "defaultValue": "..."
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestFilterBuilder.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 120,
+ "name": "Schema",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Schema",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Row"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Result"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "RelationName"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "Relationships"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 178,
+ "name": "FilterBuilder",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "RPC"
+ }
+ ],
+ "name": "PostgrestFilterBuilder",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 170,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 212,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 171,
+ "name": "schema",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Select a schema to query or perform an function (rpc) call.\n\nThe schema needs to be on the list of exposed schemas inside Supabase."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 212,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L212"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 172,
+ "name": "DynamicSchema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 173,
+ "name": "schema",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The schema to query"
+ }
+ ]
+ },
+ "type": {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/PostgrestClient.ts",
+ "qualifiedName": "default"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 121,
+ "name": "ClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.ClientOptions",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 172,
+ "name": "DynamicSchema",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "any"
+ },
+ "objectType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "name": "PostgrestClient",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [113]
+ },
+ {
+ "title": "Properties",
+ "children": [153, 135, 139, 152, 144, 141, 156, 136, 138, 142, 137, 143, 140, 158, 157]
+ },
+ {
+ "title": "Accessors",
+ "children": [159]
+ },
+ {
+ "title": "Methods",
+ "children": [186, 161, 190, 195, 192, 174, 170]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 37,
+ "character": 21,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L37"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 225,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 226,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 227,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 228,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [228]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 44,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L44"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 229,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 230,
+ "name": "Schema",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/rest/types/common/common.ts",
+ "qualifiedName": "GenericSchema"
+ },
+ "name": "GenericSchema",
+ "package": "@supabase/supabase-js"
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": 119,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaName",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 231,
+ "name": "ClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 232,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 233,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 26,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [233]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 59,
+ "character": 24,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L59"
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ "trueType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 234,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 235,
+ "name": "__InternalSupabase",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 25,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 236,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 237,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 47,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [237]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 45,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [235]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 62,
+ "character": 23,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L62"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 115,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.Database",
+ "refersToTypeParameter": true
+ }
+ },
+ "falseType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 238,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 239,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 10,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "12"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [239]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 65,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L65"
+ }
+ ]
+ }
+ }
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reflection",
+ "declaration": {
+ "id": 240,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 241,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 42,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [241]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/SupabaseClient.ts",
+ "line": 66,
+ "character": 40,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/SupabaseClient.ts#L66"
+ }
+ ]
+ }
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 116,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default.SchemaNameOrClientOptions",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 2138,
+ "name": "WebSocketFactory",
+ "variant": "declaration",
+ "kind": 128,
+ "flags": {},
+ "children": [
+ {
+ "id": 2152,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "signatures": [
+ {
+ "id": 2153,
+ "name": "WebSocketFactory",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 2138,
+ "name": "WebSocketFactory",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2146,
+ "name": "createWebSocket",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 31,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2147,
+ "name": "createWebSocket",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 31,
+ "character": 11
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2148,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2149,
+ "name": "protocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2140,
+ "name": "getWebSocketConstructor",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 30,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2141,
+ "name": "getWebSocketConstructor",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 30,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2142,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 26772,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2143,
+ "name": "getWebSocketConstructor",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "node_modules/typescript/lib/lib.dom.d.ts",
+ "line": 26774,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2144,
+ "name": "url",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2145,
+ "name": "protocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "WebSocket"
+ },
+ "name": "WebSocket",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 2150,
+ "name": "isWebSocketSupported",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {
+ "isStatic": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 32,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2151,
+ "name": "isWebSocketSupported",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 32,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [2152]
+ },
+ {
+ "title": "Methods",
+ "children": [2146, 2140, 2150]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 28,
+ "character": 21
+ }
+ ]
+ },
+ {
+ "id": 839,
+ "name": "AdminUserAttributes",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 841,
+ "name": "app_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's application specific metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.app_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nOnly a service role can modify.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`app_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes app-specific info, such as identity providers, roles, and other\naccess control information."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 333,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 844,
+ "name": "ban_duration",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Determines how long a user is banned for.\n\nThe format for the ban duration follows a strict sequence of decimal numbers with a unit suffix.\nValid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\".\n\nFor example, some possible durations include: '300ms', '2h45m'.\n\nSetting the ban duration to 'none' lifts the ban on the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 356,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 849,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 290,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.email"
+ }
+ },
+ {
+ "id": 842,
+ "name": "email_confirm",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Confirms the user's email address if set to true.\n\nOnly a service role can modify."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 339,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 847,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`id`"
+ },
+ {
+ "kind": "text",
+ "text": " for the user.\n\nAllows you to overwrite the default "
+ },
+ {
+ "kind": "code",
+ "text": "`id`"
+ },
+ {
+ "kind": "text",
+ "text": " set for the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 378,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 848,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The nonce sent for reauthentication if the user's password is to be updated.\n\nCall reauthenticate() to obtain the nonce first."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 304,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.nonce"
+ }
+ },
+ {
+ "id": 850,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's password."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.password"
+ }
+ },
+ {
+ "id": 846,
+ "name": "password_hash",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`password_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " for the user's password.\n\nAllows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.\n\nSupports bcrypt, scrypt (firebase), and argon2 password hashes."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 372,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 851,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true,
+ "isInherited": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 294,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "target": -1,
+ "name": "Omit.phone"
+ }
+ },
+ {
+ "id": 843,
+ "name": "phone_confirm",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Confirms the user's phone number if set to true.\n\nOnly a service role can modify."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 345,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 845,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The "
+ },
+ {
+ "kind": "code",
+ "text": "`role`"
+ },
+ {
+ "kind": "text",
+ "text": " claim set in the user's access token JWT.\n\nWhen a user signs up, this role is set to "
+ },
+ {
+ "kind": "code",
+ "text": "`authenticated`"
+ },
+ {
+ "kind": "text",
+ "text": " by default. You should only modify the "
+ },
+ {
+ "kind": "code",
+ "text": "`role`"
+ },
+ {
+ "kind": "text",
+ "text": " if you need to provision several levels of admin access that have different permissions on individual columns in your database.\n\nSetting this role to "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " is not recommended as it grants the user admin privileges."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 364,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 840,
+ "name": "user_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`user_metadata`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name.\n\nNote: When using the GoTrueAdminApi and wanting to modify a user's metadata,\nthis attribute is used instead of UserAttributes data."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 324,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [841, 844, 849, 842, 847, 848, 850, 846, 851, 843, 845, 840]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 313,
+ "character": 17
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 833,
+ "name": "UserAttributes",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "data"
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ]
+ },
+ {
+ "id": 799,
+ "name": "AMREntry",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An authentication methord reference (AMR) entry.\n\nAn entry designates what method was used by the user to verify their\nidentity and at what time."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
+ "target": 1221
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 800,
+ "name": "method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Authentication method name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 200,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 797,
+ "name": "AMRMethod",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 801,
+ "name": "timestamp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the method was successfully used. Represents number of\nseconds since 1st January 1970 (UNIX epoch) in UTC."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 205,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [800, 801]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 198,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1390,
+ "name": "AuthOAuthServerApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth 2.1 authorization server user-facing methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThese methods are used to implement the consent page."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1394,
+ "name": "approveAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1395,
+ "name": "approveAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Approves an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1396,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to approve"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1397,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1398,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1399,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1367,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1399]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1366,
+ "character": 60
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1400,
+ "name": "denyAuthorization",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1401,
+ "name": "denyAuthorization",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Denies an OAuth authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Redirect URL to send the user back to the OAuth client"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1402,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID to deny"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1403,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional parameters including skipBrowserRedirect"
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1404,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1405,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1378,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1405]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1377,
+ "character": 57
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1391,
+ "name": "getAuthorizationDetails",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1357,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1392,
+ "name": "getAuthorizationDetails",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Retrieves details about an OAuth authorization request.\nUsed to display consent information to the user.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis method returns authorization details including client info, scopes, and user information.\nIf the response includes a redirect_uri, it means consent was already given - the caller\nshould handle the redirect manually if needed."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@returns",
+ "content": [
+ {
+ "kind": "text",
+ "text": "Authorization details including client info and requested scopes"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1357,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1393,
+ "name": "authorizationId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID from the authorization request"
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1386,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1394, 1400, 1391]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1344,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 37,
+ "name": "AuthSession",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 40,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The access token jwt. It is recommended to set the JWT_EXPIRY to a shorter expiry value."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 169,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 43,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A timestamp of when the token will expire. Returned when a login is confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 181,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 42,
+ "name": "expires_in",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The number of seconds until the token expires (since it was issued). Returned when a login is confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 177,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 39,
+ "name": "provider_refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The oauth provider refresh token. If present, this can be used to refresh the provider_token via the oauth provider's API.\nNot all oauth providers return a provider refresh token. If the provider_refresh_token is missing, please refer to the oauth provider's documentation for information on how to obtain the provider refresh token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 165,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 38,
+ "name": "provider_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The oauth provider token. If present, this can be used to make external API requests to the oauth provider used."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 160,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 41,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A one-time used refresh token that never expires."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 173,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 44,
+ "name": "token_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 182,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "id": 45,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "When using a separate user storage, accessing properties of this object will throw an error."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 186,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [40, 43, 42, 39, 38, 41, 44, 45]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 156,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 11,
+ "name": "AuthUser",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 22,
+ "name": "action_link",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 270,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 13,
+ "name": "app_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 261,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 825,
+ "name": "UserAppMetadata",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 15,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 263,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 16,
+ "name": "confirmation_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 264,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 26,
+ "name": "confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 274,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 25,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 273,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 36,
+ "name": "deleted_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 284,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 23,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 271,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 18,
+ "name": "email_change_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 266,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 27,
+ "name": "email_confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 275,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 35,
+ "name": "factors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 283,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": "verified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ },
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ]
+ },
+ {
+ "type": "literal",
+ "value": "unverified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 12,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 260,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 32,
+ "name": "identities",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 280,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 802,
+ "name": "UserIdentity",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 21,
+ "name": "invited_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 269,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 33,
+ "name": "is_anonymous",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 281,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 34,
+ "name": "is_sso_user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 282,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 29,
+ "name": "last_sign_in_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 277,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 19,
+ "name": "new_email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 267,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 20,
+ "name": "new_phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 268,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 24,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 272,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 28,
+ "name": "phone_confirmed_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 276,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 17,
+ "name": "recovery_sent_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 265,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 30,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 278,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 31,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 279,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 14,
+ "name": "user_metadata",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 262,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 829,
+ "name": "UserMetadata",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 22, 13, 15, 16, 26, 25, 36, 23, 18, 27, 35, 12, 32, 21, 33, 34, 29, 19, 20, 24, 28, 17,
+ 30, 31, 14
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1044,
+ "name": "GenerateLinkOptions",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 1045,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 663,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 1046,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL which will be appended to the email link generated."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 665,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1045, 1046]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 657,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1237,
+ "name": "GoTrueAdminMFAApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains the full multi-factor authentication administration API."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1241,
+ "name": "deleteFactor",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 996,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1242,
+ "name": "deleteFactor",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes a factor on a user. This will log the user out of all active\nsessions if the deleted factor was verified."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#unenroll",
+ "target": 1210
+ }
+ ]
+ },
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 996,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1243,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1227,
+ "name": "AuthMFAAdminDeleteFactorParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1224,
+ "name": "AuthMFAAdminDeleteFactorResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1238,
+ "name": "listFactors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 987,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1239,
+ "name": "listFactors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all factors associated to a user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 987,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1240,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1234,
+ "name": "AuthMFAAdminListFactorsParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1231,
+ "name": "AuthMFAAdminListFactorsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1241, 1238]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 982,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1347,
+ "name": "GoTrueAdminOAuthApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains all OAuth client administration methods.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1351,
+ "name": "createClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1257,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1352,
+ "name": "createClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1353,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1319,
+ "name": "CreateOAuthClientParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1361,
+ "name": "deleteClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1362,
+ "name": "deleteClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Deletes an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1363,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1364,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1365,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1279,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1366,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1280,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1365, 1366]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1278,
+ "character": 44
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1354,
+ "name": "getClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1264,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1355,
+ "name": "getClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Gets details of a specific OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1264,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1356,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1348,
+ "name": "listClients",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1250,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1349,
+ "name": "listClients",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Lists all OAuth clients with optional pagination.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1250,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1350,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 1258,
+ "name": "PageParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1335,
+ "name": "OAuthClientListResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1367,
+ "name": "regenerateClientSecret",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1288,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1368,
+ "name": "regenerateClientSecret",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Regenerates the secret for an OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1288,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1369,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1357,
+ "name": "updateClient",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1271,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1358,
+ "name": "updateClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updates an existing OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth.\n\nThis function should only be called on a server. Never expose your "
+ },
+ {
+ "kind": "code",
+ "text": "`service_role`"
+ },
+ {
+ "kind": "text",
+ "text": " key in the browser."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1271,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1359,
+ "name": "clientId",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1360,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1327,
+ "name": "UpdateOAuthClientParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1334,
+ "name": "OAuthClientResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Methods",
+ "children": [1351, 1361, 1354, 1348, 1367, 1357]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1243,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1107,
+ "name": "GoTrueMFAApi",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Contains the full multi-factor authentication API."
+ }
+ ]
+ },
+ "children": [
+ {
+ "id": 1223,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 945,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.ts",
+ "qualifiedName": "WebAuthnApi"
+ },
+ "name": "WebAuthnApi",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1128,
+ "name": "challenge",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 900,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 901,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 902,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 903,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1129,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Prepares a challenge used to verify that a user has access to a MFA\nfactor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 900,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1130,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1131,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1132,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1132]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1133,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1134,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1135,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1134, 1135]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1136,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1137,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1138,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1141,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1139,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1140,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1141, 1139, 1140]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1142,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1137, 1142]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1143,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 901,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1144,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1145,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1147,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Messaging channel to use (e.g. whatsapp or sms). Only relevant for phone factors"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 749,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1146,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1147, 1146]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1148,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1149,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1150,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1149, 1150]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1151,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1152,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1153,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1156,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1154,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1155,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1156, 1154, 1155]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1157,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1152, 1157]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1158,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 902,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1159,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1160,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1161,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor to be challenged. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 742,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1162,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 754,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1163,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1164,
+ "name": "rpId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Relying party ID"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 756,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1165,
+ "name": "rpOrigins",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Relying party origins"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 758,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1164, 1165]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 754,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1161, 1162]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1166,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1167,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 1168,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1167, 1168]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1169,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1170,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1171,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1174,
+ "name": "expires_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp in UNIX seconds when this challenge will no longer be usable."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 804,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1172,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the newly created challenge."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 800,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1173,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Factor Type which generated the challenge"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 802,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ },
+ {
+ "id": 1175,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 811,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1176,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1178,
+ "name": "credential_options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 813,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1179,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1180,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 814,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.dom.ts",
+ "qualifiedName": "PublicKeyCredentialCreationOptionsFuture"
+ },
+ "name": "PublicKeyCredentialCreationOptionsFuture",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1180]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 813,
+ "character": 28
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1177,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 812,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "create"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1178, 1177]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 811,
+ "character": 14
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1181,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1183,
+ "name": "credential_options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 818,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1184,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1185,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 819,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/webauthn.dom.ts",
+ "qualifiedName": "PublicKeyCredentialRequestOptionsFuture"
+ },
+ "name": "PublicKeyCredentialRequestOptionsFuture",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1185]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 818,
+ "character": 28
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1182,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 817,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "request"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1183, 1182]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 816,
+ "character": 8
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1174, 1172, 1173, 1175]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1186,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1170, 1186]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1187,
+ "name": "challenge",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 903,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1188,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1077,
+ "name": "MFAChallengeParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1096,
+ "name": "AuthMFAChallengeResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1213,
+ "name": "challengeAndVerify",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 921,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1214,
+ "name": "challengeAndVerify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Helper method which creates a challenge and immediately uses the given code to verify against it thereafter. The verification code is\nprovided by the user by entering a code seen in their authenticator app."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 921,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1215,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1216,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1218,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1217,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1218, 1217]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1108,
+ "name": "enroll",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 892,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 893,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 894,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 895,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1109,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Starts the enrollment process for a new Multi-Factor Authentication (MFA)\nfactor. This method creates a new "
+ },
+ {
+ "kind": "code",
+ "text": "`unverified`"
+ },
+ {
+ "kind": "text",
+ "text": " factor.\nTo verify a factor, present the QR code or secret to the user and ask them to add it to their\nauthenticator app.\nThe user has to enter the code from their authenticator app to verify it.\n\nUpon verifying a factor, all other sessions are logged out and the current session's authenticator level is promoted to "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 892,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1110,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1111,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1112,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "totp"
+ }
+ },
+ {
+ "id": 1113,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1114,
+ "name": "issuer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Domain which the user is enrolled with."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1050,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1112, 1113, 1114]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1115,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 893,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1116,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1117,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1118,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "phone"
+ }
+ },
+ {
+ "id": 1119,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1120,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Phone number associated with a factor. Number should conform to E.164 format"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1055,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1118, 1119, 1120]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1121,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 894,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1122,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1123,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1124,
+ "name": "factorType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of factor being enrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1044,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ },
+ {
+ "id": 1125,
+ "name": "friendlyName",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human readable name assigned to the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1046,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1124, 1125]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1126,
+ "name": "enroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 895,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1127,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1060,
+ "name": "MFAEnrollParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1087,
+ "name": "AuthMFAEnrollResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1221,
+ "name": "getAuthenticatorAssuranceLevel",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 944,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1222,
+ "name": "getAuthenticatorAssuranceLevel",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the Authenticator Assurance Level (AAL) for the active session.\n\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`aal1`"
+ },
+ {
+ "kind": "text",
+ "text": " (or "
+ },
+ {
+ "kind": "code",
+ "text": "`null`"
+ },
+ {
+ "kind": "text",
+ "text": ") means that the user's identity has been verified only\nwith a conventional login (email+password, OTP, magic link, social login,\netc.).\n- "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": " means that the user's identity has been verified both with a conventional login and at least one MFA factor.\n\nAlthough this method returns a promise, it's fairly quick (microseconds)\nand rarely uses the network. You can use this to check whether the current\nuser needs to be shown a screen to verify their MFA factors."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 944,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1102,
+ "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1219,
+ "name": "listFactors",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 930,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1220,
+ "name": "listFactors",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Returns the list of MFA factors enabled for this user."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#enroll",
+ "target": 1108
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#getAuthenticatorAssuranceLevel",
+ "target": 1221
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClient#getUser",
+ "target": 500
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 930,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1097,
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "tuple",
+ "elements": [
+ {
+ "type": "literal",
+ "value": "totp"
+ },
+ {
+ "type": "literal",
+ "value": "phone"
+ },
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "AuthMFAListFactorsResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1210,
+ "name": "unenroll",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 916,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1211,
+ "name": "unenroll",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unenroll removes a MFA factor.\nA user has to have an "
+ },
+ {
+ "kind": "code",
+ "text": "`aal2`"
+ },
+ {
+ "kind": "text",
+ "text": " authenticator level in order to unenroll a "
+ },
+ {
+ "kind": "code",
+ "text": "`verified`"
+ },
+ {
+ "kind": "text",
+ "text": " factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 916,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1212,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1061,
+ "name": "MFAUnenrollParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1088,
+ "name": "AuthMFAUnenrollResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1189,
+ "name": "verify",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 908,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 909,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 910,
+ "character": 4
+ },
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 911,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1190,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verifies a code against a challenge. The verification code is\nprovided by the user by entering a code seen in their authenticator app."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 908,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1191,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1192,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1194,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1195,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1193,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1194, 1195, 1193]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1196,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 909,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1197,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1198,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1200,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1201,
+ "name": "code",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Verification code provided by the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 707,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1199,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1200, 1201, 1199]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1202,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 910,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1203,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1204,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1206,
+ "name": "challengeId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the challenge being verified. Returned in challenge()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 703,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1205,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being verified. Returned in enroll()."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 701,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1207,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 730,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
+ },
+ "name": "MFAVerifyWebauthnParamFieldsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ ],
+ "name": "MFAVerifyWebauthnCredentialParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1206, 1205, 1207]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 51
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1208,
+ "name": "verify",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 911,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1209,
+ "name": "params",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 1072,
+ "name": "MFAVerifyParams",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1223]
+ },
+ {
+ "title": "Methods",
+ "children": [1128, 1213, 1108, 1221, 1219, 1210, 1189]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 882,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 1290,
+ "name": "JWK",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 1293,
+ "name": "alg",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1123,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1292,
+ "name": "key_ops",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1122,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1294,
+ "name": "kid",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1124,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1291,
+ "name": "kty",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1121,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "RSA"
+ },
+ {
+ "type": "literal",
+ "value": "EC"
+ },
+ {
+ "type": "literal",
+ "value": "oct"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1293, 1292, 1294, 1291]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1120,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1295,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1125,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1296,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 852,
+ "name": "Subscription",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 854,
+ "name": "callback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The function to call every time there is an event. eg: (eventName) => {}"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 855,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 856,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 388,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 857,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 695,
+ "name": "AuthChangeEvent",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 858,
+ "name": "session",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 853,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The subscriber UUID. This will be set by the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 384,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 859,
+ "name": "unsubscribe",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Call this to remove the listener."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 860,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 861,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 392,
+ "character": 17
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [854, 853, 859]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 380,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 825,
+ "name": "UserAppMetadata",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 826,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 253,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [826]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 252,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 827,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 254,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 828,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 833,
+ "name": "UserAttributes",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 838,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 311,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 834,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 290,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 837,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The nonce sent for reauthentication if the user's password is to be updated.\n\nCall reauthenticate() to obtain the nonce first."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 304,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 836,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's password."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 835,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 294,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [838, 834, 837, 836, 835]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 286,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 802,
+ "name": "UserIdentity",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 811,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 215,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 803,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 208,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 805,
+ "name": "identity_data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 210,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 806,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 210,
+ "character": 20
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 807,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 211,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 808,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 809,
+ "name": "identity_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 213,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 812,
+ "name": "last_sign_in_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 216,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 810,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 214,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 813,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 217,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 804,
+ "name": "user_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 209,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [811, 803, 805, 809, 812, 810, 813, 804]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 207,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 829,
+ "name": "UserMetadata",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 256,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 830,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 257,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 831,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 982,
+ "name": "VerifyEmailOtpParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 983,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 570,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 986,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 575,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 987,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 989,
+ "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."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 582,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 988,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 577,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [989, 988]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 575,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 984,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The otp sent to the user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 572,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 985,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 574,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [983, 986, 984, 985]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 568,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 974,
+ "name": "VerifyMobileOtpParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 978,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 557,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 979,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 981,
+ "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."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@deprecated",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 565,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 980,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 559,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [981, 980]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 557,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 975,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 552,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 976,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The otp sent to the user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 554,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 977,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 556,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 993,
+ "name": "MobileOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [978, 975, 976, 977]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 550,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 990,
+ "name": "VerifyTokenHashParams",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 991,
+ "name": "token_hash",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The token hash used in an email link"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 587,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 992,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's verification type."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 589,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [991, 992]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 585,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 2154,
+ "name": "WebSocketLike",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 2197,
+ "name": "binaryType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2198,
+ "name": "bufferedAmount",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2158,
+ "name": "CLOSED",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 5,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2157,
+ "name": "CLOSING",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 4,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2155,
+ "name": "CONNECTING",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 2,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2200,
+ "name": "dispatchEvent",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2201,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 20
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2202,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 20,
+ "character": 20
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2203,
+ "name": "event",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2199,
+ "name": "extensions",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2179,
+ "name": "onclose",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2180,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2181,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 13,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2182,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2183,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "CloseEvent"
+ },
+ "name": "CloseEvent",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2184,
+ "name": "onerror",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2185,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2186,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 14,
+ "character": 14
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2187,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2188,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2174,
+ "name": "onmessage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2175,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 16
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2176,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 12,
+ "character": 16
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2177,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2178,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "MessageEvent"
+ },
+ "name": "MessageEvent",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2169,
+ "name": "onopen",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": null
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2170,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2171,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 11,
+ "character": 13
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2172,
+ "name": "this",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2173,
+ "name": "ev",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Event"
+ },
+ "name": "Event",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2156,
+ "name": "OPEN",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 3,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2161,
+ "name": "protocol",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 8,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2159,
+ "name": "readyState",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 6,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2160,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isReadonly": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 7,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2189,
+ "name": "addEventListener",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 15,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2190,
+ "name": "addEventListener",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 15,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2191,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2192,
+ "name": "listener",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "EventListener"
+ },
+ "name": "EventListener",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2162,
+ "name": "close",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2163,
+ "name": "close",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2164,
+ "name": "code",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2165,
+ "name": "reason",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2193,
+ "name": "removeEventListener",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2194,
+ "name": "removeEventListener",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2195,
+ "name": "type",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2196,
+ "name": "listener",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "EventListener"
+ },
+ "name": "EventListener",
+ "package": "typescript"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2166,
+ "name": "send",
+ "variant": "declaration",
+ "kind": 2048,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2167,
+ "name": "send",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2168,
+ "name": "data",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferLike"
+ },
+ "name": "ArrayBufferLike",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferView"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBufferLike"
+ },
+ "name": "ArrayBufferLike",
+ "package": "typescript"
+ }
+ ],
+ "name": "ArrayBufferView",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 2197, 2198, 2158, 2157, 2155, 2200, 2199, 2179, 2184, 2174, 2169, 2156, 2161, 2159, 2160
+ ]
+ },
+ {
+ "title": "Methods",
+ "children": [2189, 2162, 2193, 2166]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/lib/websocket-factory.d.ts",
+ "line": 1,
+ "character": 17
+ }
+ ]
+ },
+ {
+ "id": 2204,
+ "name": "WebSocketLikeConstructor",
+ "variant": "declaration",
+ "kind": 256,
+ "flags": {},
+ "children": [
+ {
+ "id": 2205,
+ "name": "constructor",
+ "variant": "declaration",
+ "kind": 512,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 24,
+ "character": 17
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2206,
+ "name": "WebSocketLikeConstructor",
+ "variant": "signature",
+ "kind": 16384,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 25,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2207,
+ "name": "address",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "URL"
+ },
+ "name": "URL",
+ "package": "typescript"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2208,
+ "name": "subprotocols",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2154,
+ "name": "WebSocketLike",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "children": [2205]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 24,
+ "character": 17
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2209,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 26,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2210,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ },
+ {
+ "id": 797,
+ "name": "AMRMethod",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 189,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMRMethods"
+ },
+ "name": "AMRMethods",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 798,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 189,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "id": 695,
+ "name": "AuthChangeEvent",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 10,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "INITIAL_SESSION"
+ },
+ {
+ "type": "literal",
+ "value": "PASSWORD_RECOVERY"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_IN"
+ },
+ {
+ "type": "literal",
+ "value": "SIGNED_OUT"
+ },
+ {
+ "type": "literal",
+ "value": "TOKEN_REFRESHED"
+ },
+ {
+ "type": "literal",
+ "value": "USER_UPDATED"
+ },
+ {
+ "type": "reference",
+ "target": 694,
+ "name": "AuthChangeEventMFA",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 694,
+ "name": "AuthChangeEventMFA",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 9,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "MFA_CHALLENGE_VERIFIED"
+ }
+ },
+ {
+ "id": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 860,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "aal1"
+ },
+ {
+ "type": "literal",
+ "value": "aal2"
+ }
+ ]
+ }
+ },
+ {
+ "id": 898,
+ "name": "AuthFlowType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 461,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "implicit"
+ },
+ {
+ "type": "literal",
+ "value": "pkce"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1227,
+ "name": "AuthMFAAdminDeleteFactorParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 957,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1228,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1229,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the MFA factor to delete."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 959,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1230,
+ "name": "userId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the user whose factor is being deleted."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 961,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1229, 1230]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 957,
+ "character": 45
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1224,
+ "name": "AuthMFAAdminDeleteFactorResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 950,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1225,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1226,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor that was successfully deleted."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 952,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1226]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 950,
+ "character": 61
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1234,
+ "name": "AuthMFAAdminListFactorsParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 973,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1235,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1236,
+ "name": "userId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 975,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1236]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 973,
+ "character": 44
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1231,
+ "name": "AuthMFAAdminListFactorsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "blockTags": [
+ {
+ "tag": "@expermental",
+ "content": []
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 966,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1232,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1233,
+ "name": "factors",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "All factors attached to the user."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 968,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 815,
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1233]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 966,
+ "character": 60
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1092,
+ "name": "AuthMFAChallengePhoneResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 809,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengePhoneResponseFields"
+ },
+ "name": "AuthMFAChallengePhoneResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1096,
+ "name": "AuthMFAChallengeResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 852,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1091,
+ "name": "AuthMFAChallengeTOTPResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1092,
+ "name": "AuthMFAChallengePhoneResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1093,
+ "name": "AuthMFAChallengeWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1091,
+ "name": "AuthMFAChallengeTOTPResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 807,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeTOTPResponseFields"
+ },
+ "name": "AuthMFAChallengeTOTPResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1093,
+ "name": "AuthMFAChallengeWebauthnResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for WebAuthn MFA challenge.\nContains credential creation or request options from the server."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Credential Creation",
+ "target": "https://w3c.github.io/webauthn/#sctn-credential-creation"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 828,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseFields"
+ },
+ "name": "AuthMFAChallengeWebauthnResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1094,
+ "name": "AuthMFAChallengeWebauthnResponseDataJSON",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "JSON-serializable version of WebAuthn challenge response.\nUsed for server communication with base64url-encoded binary fields."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 846,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAChallengeResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseFieldsJSON"
+ },
+ "name": "AuthMFAChallengeWebauthnResponseFieldsJSON",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1095,
+ "name": "AuthMFAChallengeWebauthnServerResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Server response type for WebAuthn MFA challenge.\nContains JSON-formatted WebAuthn options ready for browser API."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 851,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1094,
+ "name": "AuthMFAChallengeWebauthnResponseDataJSON",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1094,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollPhoneResponseFields"
+ },
+ "name": "AuthMFAEnrollPhoneResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1087,
+ "name": "AuthMFAEnrollResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 793,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1269,
+ "name": "AuthMFAEnrollPhoneResponse",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1268,
+ "name": "AuthMFAEnrollTOTPResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1089,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollTOTPResponseFields"
+ },
+ "name": "AuthMFAEnrollTOTPResponseFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1270,
+ "name": "AuthMFAEnrollWebauthnResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for WebAuthn factor enrollment.\nReturns the enrolled factor ID and metadata."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Registering a New Credential",
+ "target": "https://w3c.github.io/webauthn/#sctn-registering-a-new-credential"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1101,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponseBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "AuthMFAEnrollResponseBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollWebauthnFields"
+ },
+ "name": "AuthMFAEnrollWebauthnFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1102,
+ "name": "AuthMFAGetAuthenticatorAssuranceLevelResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 861,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1103,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1106,
+ "name": "currentAuthenticationMethods",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A list of all authentication methods attached to this session. Use\nthe information here to detect the last time a user verified a\nfactor, for example if implementing a step-up scenario."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 876,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 799,
+ "name": "AMREntry",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1104,
+ "name": "currentLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Current AAL level of the session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 863,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 1105,
+ "name": "nextLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Next possible AAL level for the session. If the next level is higher\nthan the current one, the user should go through MFA."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#challenge",
+ "target": 1128
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 870,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1106, 1104, 1105]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 861,
+ "character": 74
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1097,
+ "name": "AuthMFAListFactorsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "response of ListFactors, which should contain all the types of factors that are available, this ensures we always include all"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 854,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1100,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ },
+ "default": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1098,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1099,
+ "name": "all",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "All available factors (verified and unverified)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 856,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 815,
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1099]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 854,
+ "character": 106
+ }
+ ]
+ }
+ },
+ {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 1100,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 815,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": "verified"
+ }
+ ],
+ "name": "Factor",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1088,
+ "name": "AuthMFAUnenrollResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 794,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1089,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1090,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor that was successfully unenrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 796,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1090]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 794,
+ "character": 52
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1086,
+ "name": "AuthMFAVerifyResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for MFA verification operations.\nReturns session tokens on successful verification."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 792,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1079,
+ "name": "AuthMFAVerifyResponseData",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1079,
+ "name": "AuthMFAVerifyResponseData",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Data returned after successful MFA verification.\nContains new session tokens and updated user information."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 776,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1080,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1081,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "New access token (JWT) after successful verification."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 778,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1083,
+ "name": "expires_in",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of seconds in which the access token will expire."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 782,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1084,
+ "name": "refresh_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Refresh token you can use to obtain new access tokens when expired."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 784,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1082,
+ "name": "token_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of token, always "
+ },
+ {
+ "kind": "code",
+ "text": "`bearer`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 780,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "bearer"
+ }
+ },
+ {
+ "id": 1085,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Updated user profile."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 786,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1081, 1083, 1084, 1082, 1085]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 776,
+ "character": 40
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1386,
+ "name": "AuthOAuthAuthorizationDetailsResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for getting OAuth authorization details.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1329,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1376,
+ "name": "OAuthAuthorizationDetails",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1387,
+ "name": "AuthOAuthConsentResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for OAuth consent decision (approve/deny).\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1334,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1388,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1389,
+ "name": "redirect_url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to redirect the user back to the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1336,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1389]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1334,
+ "character": 53
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 763,
+ "name": "AuthOtpResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "AuthOtpResponse is returned when OTP is used.\n\n"
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "AuthResponse"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 116,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 764,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 767,
+ "name": "messageId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 119,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 766,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 118,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 765,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 117,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [767, 766, 765]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 116,
+ "character": 59
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 754,
+ "name": "AuthResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 102,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 755,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 757,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 104,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 756,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 103,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [757, 756]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 102,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 758,
+ "name": "AuthResponsePassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 106,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 759,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 761,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 108,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 760,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 107,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 762,
+ "name": "weak_password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 728,
+ "name": "WeakPassword",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [761, 760, 762]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 106,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 768,
+ "name": "AuthTokenResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 121,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 769,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 771,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 123,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 770,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 122,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [771, 770]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 121,
+ "character": 61
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 772,
+ "name": "AuthTokenResponsePassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 125,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 773,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 775,
+ "name": "session",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 127,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 774,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 126,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 776,
+ "name": "weakPassword",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 128,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 728,
+ "name": "WeakPassword",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [775, 774, 776]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 125,
+ "character": 69
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1250,
+ "name": "CallRefreshTokenResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1016,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 37,
+ "name": "Session",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1319,
+ "name": "CreateOAuthClientParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for creating a new OAuth client.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1187,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1320,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1321,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1189,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1322,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1191,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1324,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types (optional, defaults to authorization_code and refresh_token)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1195,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1323,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1193,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1325,
+ "name": "response_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed response types (optional, defaults to code)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1197,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1300,
+ "name": "OAuthClientResponseType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1326,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scope of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1199,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1321, 1322, 1324, 1323, 1325, 1326]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1187,
+ "character": 38
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 994,
+ "name": "EmailOtpType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 592,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ },
+ {
+ "type": "literal",
+ "value": "email"
+ }
+ ]
+ }
+ },
+ {
+ "id": 954,
+ "name": "EthereumWallet",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 523,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "EIP1193Provider"
+ },
+ "name": "EIP1193Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 955,
+ "name": "EthereumWeb3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 524,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 956,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 957,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 525,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "id": 960,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 530,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 961,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 963,
+ "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/dist/module/lib/types.d.ts",
+ "line": 534,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 964,
+ "name": "signInWithEthereum",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 535,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "EthereumSignInInput"
+ },
+ "name": "EthereumSignInInput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "version"
+ },
+ {
+ "type": "literal",
+ "value": "domain"
+ },
+ {
+ "type": "literal",
+ "value": "uri"
+ },
+ {
+ "type": "literal",
+ "value": "statement"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 962,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 532,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [963, 964, 962]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 530,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 959,
+ "name": "statement",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 529,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 958,
+ "name": "wallet",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Wallet interface to use. If not specified will default to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.ethereum`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 527,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 954,
+ "name": "EthereumWallet",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [957, 960, 959, 958]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 524,
+ "character": 38
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 965,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 966,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 538,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "ethereum"
+ }
+ },
+ {
+ "id": 967,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sign in with Ethereum compatible message. Must include "
+ },
+ {
+ "kind": "code",
+ "text": "`Issued At`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`URI`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`Version`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 540,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 969,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 543,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 970,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 971,
+ "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/dist/module/lib/types.d.ts",
+ "line": 545,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [971]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 543,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 968,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Ethereum curve (secp256k1) signature of the message."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 542,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/ethereum.ts",
+ "qualifiedName": "Hex"
+ },
+ "name": "Hex",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [966, 967, 969, 968]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 537,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 815,
+ "name": "Factor",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A MFA factor."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#enroll",
+ "target": 1108
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAApi#listFactors",
+ "target": 1219
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ },
+ {
+ "kind": "text",
+ "text": " - "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueMFAAdminApi#listFactors"
+ },
+ {
+ "kind": "text",
+ "text": "\n"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 236,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 823,
+ "name": "Type",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": 814,
+ "name": "FactorType",
+ "package": "@supabase/auth-js"
+ },
+ "default": {
+ "type": "reference",
+ "target": 814,
+ "name": "FactorType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 824,
+ "name": "Status",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorVerificationStatus"
+ },
+ "name": "FactorVerificationStatus",
+ "package": "@supabase/auth-js"
+ },
+ "default": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorVerificationStatuses"
+ },
+ "name": "FactorVerificationStatuses",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 816,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 821,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 249,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 819,
+ "name": "factor_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of factor. "
+ },
+ {
+ "kind": "code",
+ "text": "`totp`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`phone`"
+ },
+ {
+ "kind": "text",
+ "text": " supported with this version"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 244,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 823,
+ "name": "Type",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 818,
+ "name": "friendly_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Friendly name of the factor, useful to disambiguate between multiple factors."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 240,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 817,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 238,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 820,
+ "name": "status",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The verification status of the factor, default is "
+ },
+ {
+ "kind": "code",
+ "text": "`unverified`"
+ },
+ {
+ "kind": "text",
+ "text": " after "
+ },
+ {
+ "kind": "code",
+ "text": "`.enroll()`"
+ },
+ {
+ "kind": "text",
+ "text": ", then "
+ },
+ {
+ "kind": "code",
+ "text": "`verified`"
+ },
+ {
+ "kind": "text",
+ "text": " after the user verifies it with "
+ },
+ {
+ "kind": "code",
+ "text": "`.verify()`"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 248,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 824,
+ "name": "Status",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 822,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 250,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [821, 819, 818, 817, 820, 822]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 236,
+ "character": 146
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 814,
+ "name": "FactorType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of factor. "
+ },
+ {
+ "kind": "code",
+ "text": "`totp`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`phone`"
+ },
+ {
+ "kind": "text",
+ "text": " supported with this version"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 223,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorTypes"
+ },
+ "name": "FactorTypes",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 86,
+ "name": "FunctionInvokeOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 46,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 87,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 94,
+ "name": "body",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The body of the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 64,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "File"
+ },
+ "name": "File",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Blob"
+ },
+ "name": "Blob",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "ArrayBuffer"
+ },
+ "name": "ArrayBuffer",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "FormData"
+ },
+ "name": "FormData",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "ReadableStream"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ ],
+ "name": "ReadableStream",
+ "package": "typescript"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ },
+ {
+ "id": 88,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Object representing the headers to send with the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 89,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 50,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 90,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 51,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 91,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 92,
+ "name": "method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The HTTP verb of the request"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 56,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "POST"
+ },
+ {
+ "type": "literal",
+ "value": "GET"
+ },
+ {
+ "type": "literal",
+ "value": "PUT"
+ },
+ {
+ "type": "literal",
+ "value": "PATCH"
+ },
+ {
+ "type": "literal",
+ "value": "DELETE"
+ }
+ ]
+ }
+ },
+ {
+ "id": 93,
+ "name": "region",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The Region to invoke the function in."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 60,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 96,
+ "name": "FunctionRegion",
+ "package": "@supabase/functions-js"
+ }
+ },
+ {
+ "id": 95,
+ "name": "signal",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The AbortSignal to use for the request."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 68,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "AbortSignal"
+ },
+ "name": "AbortSignal",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [94, 88, 92, 93, 95]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/functions-js/dist/module/types.d.ts",
+ "line": 46,
+ "character": 36
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1038,
+ "name": "GenerateEmailChangeLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 647,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1039,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1041,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 650,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1042,
+ "name": "newEmail",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's new email. Only required if type is 'email_change_current' or 'email_change_new'."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 654,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1043,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 655,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1040,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 648,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1041, 1042, 1043, 1040]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 647,
+ "character": 44
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1028,
+ "name": "GenerateInviteOrMagiclinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 635,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1029,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1031,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 638,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1032,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 639,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "data"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1030,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 636,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1031, 1032, 1030]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 635,
+ "character": 46
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1047,
+ "name": "GenerateLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 667,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1022,
+ "name": "GenerateSignupLinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1028,
+ "name": "GenerateInviteOrMagiclinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1033,
+ "name": "GenerateRecoveryLinkParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1038,
+ "name": "GenerateEmailChangeLinkParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1052,
+ "name": "GenerateLinkProperties",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The properties related to the email link generated"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 673,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1053,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1054,
+ "name": "action_link",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The email link to send to the user.\nThe action_link follows the following format: auth/v1/verify?type={verification_type}&token={hashed_token}&redirect_to={redirect_to}"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 678,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1055,
+ "name": "email_otp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The raw email OTP.\nYou should send this in the email if you want your users to verify using an OTP instead of the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 683,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1056,
+ "name": "hashed_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The hashed token appended to the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 687,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1057,
+ "name": "redirect_to",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The URL appended to the action link."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 689,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1058,
+ "name": "verification_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The verification type that the email link is associated to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 691,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1059,
+ "name": "GenerateLinkType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1054, 1055, 1056, 1057, 1058]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 673,
+ "character": 37
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1048,
+ "name": "GenerateLinkResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 668,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1049,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1050,
+ "name": "properties",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 669,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1052,
+ "name": "GenerateLinkProperties",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1051,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 670,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1050, 1051]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 668,
+ "character": 64
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1059,
+ "name": "GenerateLinkType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 693,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "invite"
+ },
+ {
+ "type": "literal",
+ "value": "magiclink"
+ },
+ {
+ "type": "literal",
+ "value": "recovery"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_current"
+ },
+ {
+ "type": "literal",
+ "value": "email_change_new"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1033,
+ "name": "GenerateRecoveryLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 641,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1034,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1036,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 644,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1037,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 645,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1035,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 642,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "recovery"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1036, 1037, 1035]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 641,
+ "character": 41
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1022,
+ "name": "GenerateSignupLinkParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 629,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1023,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1025,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 631,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1027,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 633,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1044,
+ "name": "GenerateLinkOptions",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "data"
+ },
+ {
+ "type": "literal",
+ "value": "redirectTo"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 1026,
+ "name": "password",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 632,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1024,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 630,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "signup"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1025, 1027, 1026, 1024]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 629,
+ "character": 39
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 705,
+ "name": "GoTrueClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 27,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 706,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 714,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 720,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 47,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 721,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 47,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 722,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 723,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 724,
+ "name": "args",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 713,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 33,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 718,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 45,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/fetch.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 719,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 46,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 898,
+ "name": "AuthFlowType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 726,
+ "name": "hasCustomAuthorizationHeader",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Set to \"true\" if there is a custom authorization header set globally."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 58,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 708,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 29,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 709,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 29,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 710,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 30,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 711,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 725,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 696,
+ "name": "LockFunc",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 715,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 716,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 712,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 32,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 707,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 28,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 717,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Stores the user object in a separate storage location from the rest of the session data. When non-null, "
+ },
+ {
+ "kind": "code",
+ "text": "`storage`"
+ },
+ {
+ "kind": "text",
+ "text": " will only store a JSON object containing the access and refresh token and some adjacent metadata, while "
+ },
+ {
+ "kind": "code",
+ "text": "`userStorage`"
+ },
+ {
+ "kind": "text",
+ "text": " will only contain the user object under the key "
+ },
+ {
+ "kind": "code",
+ "text": "`storageKey + '-user'`"
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nWhen this option is set and cookie storage is used, "
+ },
+ {
+ "kind": "code",
+ "text": "`getSession()`"
+ },
+ {
+ "kind": "text",
+ "text": " and other functions that load a session from the cookie store might not return back a user. It's very important to always use "
+ },
+ {
+ "kind": "code",
+ "text": "`getUser()`"
+ },
+ {
+ "kind": "text",
+ "text": " to fetch a user object in those scenarios."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 44,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1244,
+ "name": "SupportedStorage",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [714, 720, 713, 718, 719, 726, 708, 725, 715, 716, 712, 707, 717]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 27,
+ "character": 34
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1247,
+ "name": "InitializeResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1013,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1248,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1249,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1014,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1249]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1013,
+ "character": 31
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1271,
+ "name": "JwtHeader",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1102,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1272,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1273,
+ "name": "alg",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1103,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "RS256"
+ },
+ {
+ "type": "literal",
+ "value": "ES256"
+ },
+ {
+ "type": "literal",
+ "value": "HS256"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1274,
+ "name": "kid",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1104,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1275,
+ "name": "typ",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1105,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1273, 1274, 1275]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1102,
+ "character": 24
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1286,
+ "name": "JwtPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1117,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1276,
+ "name": "RequiredClaims",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1287,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1117,
+ "character": 42
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1288,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1118,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1289,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 696,
+ "name": "LockFunc",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own global lock implementation instead of the default\nimplementation. The function should acquire a lock for the duration of the\n"
+ },
+ {
+ "kind": "code",
+ "text": "`fn`"
+ },
+ {
+ "kind": "text",
+ "text": " async function, such that no other client instances will be able to\nhold it at the same time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 697,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 23
+ }
+ ],
+ "signatures": [
+ {
+ "id": 698,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "typeParameters": [
+ {
+ "id": 704,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 699,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 700,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout should occur. If positive it\n should throw an Error with an "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": "\n property set to true if the operation fails to be\n acquired after this much time (ms)."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 701,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to execute when the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 702,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 26,
+ "character": 69
+ }
+ ],
+ "signatures": [
+ {
+ "id": 703,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 704,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 704,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1078,
+ "name": "MFAChallengeAndVerifyParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 771,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeAndVerifyTOTPParams"
+ },
+ "name": "MFAChallengeAndVerifyTOTPParams",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1077,
+ "name": "MFAChallengeParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 767,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1074,
+ "name": "MFAChallengeTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1075,
+ "name": "MFAChallengePhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1076,
+ "name": "MFAChallengeWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1075,
+ "name": "MFAChallengePhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 751,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengePhoneParamFields"
+ },
+ "name": "MFAChallengePhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1074,
+ "name": "MFAChallengeTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 746,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1076,
+ "name": "MFAChallengeWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for initiating a WebAuthn MFA challenge.\nIncludes Relying Party information needed for WebAuthn ceremonies."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Relying Party Operations",
+ "target": "https://w3c.github.io/webauthn/#sctn-rp-operations"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 766,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParamsBase"
+ },
+ "name": "MFAChallengeParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeWebauthnParamFields"
+ },
+ "name": "MFAChallengeWebauthnParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1060,
+ "name": "MFAEnrollParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 694,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1265,
+ "name": "MFAEnrollTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1266,
+ "name": "MFAEnrollPhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1267,
+ "name": "MFAEnrollWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1266,
+ "name": "MFAEnrollPhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1057,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "phone"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollPhoneParamFields"
+ },
+ "name": "MFAEnrollPhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1265,
+ "name": "MFAEnrollTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1052,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "totp"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollTOTPParamFields"
+ },
+ "name": "MFAEnrollTOTPParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1267,
+ "name": "MFAEnrollWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for enrolling a WebAuthn factor.\nCreates an unverified WebAuthn factor that must be verified with a credential."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Registering a New Credential",
+ "target": "https://w3c.github.io/webauthn/#sctn-registering-a-new-credential"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1064,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParamsBase"
+ },
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "webauthn"
+ }
+ ],
+ "name": "MFAEnrollParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollWebauthnFields"
+ },
+ "name": "MFAEnrollWebauthnFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1073,
+ "name": "MFATOTPChannel",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 745,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFATOTPChannels"
+ },
+ "name": "MFATOTPChannels",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 1061,
+ "name": "MFAUnenrollParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 695,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1062,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1063,
+ "name": "factorId",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "ID of the factor being unenrolled."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 697,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1063]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 695,
+ "character": 32
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1072,
+ "name": "MFAVerifyParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 739,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 1064,
+ "name": "MFAVerifyTOTPParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1065,
+ "name": "MFAVerifyPhoneParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1070,
+ "name": "MFAVerifyWebauthnParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1065,
+ "name": "MFAVerifyPhoneParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 711,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyPhoneParamFields"
+ },
+ "name": "MFAVerifyPhoneParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1064,
+ "name": "MFAVerifyTOTPParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 709,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyTOTPParamFields"
+ },
+ "name": "MFAVerifyTOTPParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1066,
+ "name": "MFAVerifyWebauthnParamFields",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "WebAuthn-specific fields for MFA verification.\nSupports both credential creation (registration) and request (authentication) flows."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 729,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1069,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ },
+ "default": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1067,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1068,
+ "name": "webauthn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 730,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFieldsBase"
+ },
+ "name": "MFAVerifyWebauthnParamFieldsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnCredentialParamFields"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1069,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnCredentialParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1068]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 729,
+ "character": 98
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1070,
+ "name": "MFAVerifyWebauthnParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for WebAuthn MFA verification.\nUsed to verify WebAuthn credentials after challenge."
+ }
+ ],
+ "blockTags": [
+ {
+ "tag": "@see",
+ "content": [
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "W3C WebAuthn Spec - Verifying an Authentication Assertion",
+ "target": "https://w3c.github.io/webauthn/#sctn-verifying-assertion"
+ }
+ ]
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 738,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 1071,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of WebAuthn operation: 'create' for registration, 'request' for authentication"
+ }
+ ]
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ },
+ "default": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "create"
+ },
+ {
+ "type": "literal",
+ "value": "request"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParamsBase"
+ },
+ "name": "MFAVerifyParamsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 1066,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1071,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "MFAVerifyWebauthnParamFields",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 993,
+ "name": "MobileOtpType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 591,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1370,
+ "name": "OAuthAuthorizationClient",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client details in an authorization request.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1294,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1371,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1372,
+ "name": "client_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the OAuth client (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1296,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1373,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1298,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1374,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's website"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1300,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1375,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1302,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1372, 1373, 1374, 1375]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1294,
+ "character": 39
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1376,
+ "name": "OAuthAuthorizationDetails",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth authorization details for the consent flow.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1308,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1377,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1378,
+ "name": "authorization_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The authorization ID"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1310,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1380,
+ "name": "client",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client requesting authorization"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1314,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1370,
+ "name": "OAuthAuthorizationClient",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1379,
+ "name": "redirect_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Redirect URI - present if user already consented (can be used to trigger immediate redirect)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1312,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1385,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Space-separated list of requested scopes"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1323,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1381,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User object associated with the authorization"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1316,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1382,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1384,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User email"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1320,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1383,
+ "name": "id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "User ID (UUID)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1318,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1384, 1383]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1316,
+ "character": 10
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1378, 1380, 1379, 1385, 1381]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1308,
+ "character": 40
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1303,
+ "name": "OAuthClient",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client object returned from the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1153,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1304,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1305,
+ "name": "client_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Unique identifier for the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1155,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1306,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1157,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1307,
+ "name": "client_secret",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Client secret (only returned on registration and regeneration)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1159,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1308,
+ "name": "client_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Type of OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1161,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1301,
+ "name": "OAuthClientType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1311,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1167,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1317,
+ "name": "created_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the client was created"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1179,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1314,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1173,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1312,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1169,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1313,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1171,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ },
+ {
+ "id": 1310,
+ "name": "registration_type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Registration type of the client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1165,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1302,
+ "name": "OAuthClientRegistrationType",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1315,
+ "name": "response_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed response types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1175,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1300,
+ "name": "OAuthClientResponseType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1316,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Scope of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1177,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1309,
+ "name": "token_endpoint_auth_method",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Token endpoint authentication method"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1163,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1318,
+ "name": "updated_at",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Timestamp when the client was last updated"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1181,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 1305, 1306, 1307, 1308, 1311, 1317, 1314, 1312, 1313, 1310, 1315, 1316, 1309, 1318
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1153,
+ "character": 26
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1299,
+ "name": "OAuthClientGrantType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client grant types supported by the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1133,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "authorization_code"
+ },
+ {
+ "type": "literal",
+ "value": "refresh_token"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1335,
+ "name": "OAuthClientListResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for listing OAuth clients.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1227,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1336,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1337,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1228,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1338,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1340,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1230,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1339,
+ "name": "clients",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1229,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1303,
+ "name": "OAuthClient",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1340, 1339]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1228,
+ "character": 10
+ }
+ ]
+ }
+ },
+ {
+ "type": "reference",
+ "target": 1251,
+ "name": "Pagination",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1341,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1232,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1337, 1341]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1227,
+ "character": 38
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1342,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1343,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1234,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1344,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1345,
+ "name": "clients",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1235,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "tuple"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1345]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1234,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1346,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1237,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1343, 1346]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1233,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1302,
+ "name": "OAuthClientRegistrationType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client registration type.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1148,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "dynamic"
+ },
+ {
+ "type": "literal",
+ "value": "manual"
+ }
+ ]
+ }
+ },
+ {
+ "id": 1334,
+ "name": "OAuthClientResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Response type for OAuth client operations.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1222,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 1303,
+ "name": "OAuthClient",
+ "package": "@supabase/auth-js"
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1300,
+ "name": "OAuthClientResponseType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client response types supported by the OAuth 2.1 server.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1138,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "code"
+ }
+ },
+ {
+ "id": 1301,
+ "name": "OAuthClientType",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth client type indicating whether the client can keep credentials confidential.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1143,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "public"
+ },
+ {
+ "type": "literal",
+ "value": "confidential"
+ }
+ ]
+ }
+ },
+ {
+ "id": 777,
+ "name": "OAuthResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 130,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 778,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 779,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 131,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 780,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 781,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 132,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 782,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 133,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [781, 782]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 131,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 783,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 135,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [779, 783]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 130,
+ "character": 28
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 784,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 785,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 137,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 786,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 787,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 138,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 788,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 139,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [787, 788]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 137,
+ "character": 10
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 789,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 141,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [785, 789]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 136,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1258,
+ "name": "PageParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1023,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1259,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1260,
+ "name": "page",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The page number"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1025,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1261,
+ "name": "perPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Number of items returned per page"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1027,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1260, 1261]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1023,
+ "character": 25
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1251,
+ "name": "Pagination",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1017,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1252,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1254,
+ "name": "lastPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1020,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1253,
+ "name": "nextPage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1019,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 1255,
+ "name": "total",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1021,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1254, 1253, 1255]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1017,
+ "character": 25
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 1256,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1018,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1257,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 50,
+ "name": "PostgrestMaybeSingleResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 25,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 51,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 48,
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 51,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "PostgrestSingleResponse",
+ "package": "@supabase/postgrest-js"
+ }
+ },
+ {
+ "id": 46,
+ "name": "PostgrestResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 26,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 47,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 48,
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 47,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "name": "PostgrestSingleResponse",
+ "package": "@supabase/postgrest-js"
+ }
+ },
+ {
+ "id": 48,
+ "name": "PostgrestSingleResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/postgrest-js/dist/cjs/types/types.d.ts",
+ "line": 24,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 49,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponseSuccess"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 49,
+ "name": "T",
+ "package": "@supabase/postgrest-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "PostgrestResponseSuccess",
+ "package": "@supabase/postgrest-js"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponseFailure"
+ },
+ "name": "PostgrestResponseFailure",
+ "package": "@supabase/postgrest-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 732,
+ "name": "Prettify",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Resolve mapped types and show the derived keys and their types when hovering in\nVS Code, instead of just showing the names those mapped types are defined with."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 70,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 733,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "objectType": {
+ "type": "reference",
+ "target": 733,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 693,
+ "name": "Provider",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of the providers supported by GoTrue."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 8,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "bitbucket"
+ },
+ {
+ "type": "literal",
+ "value": "discord"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "figma"
+ },
+ {
+ "type": "literal",
+ "value": "github"
+ },
+ {
+ "type": "literal",
+ "value": "gitlab"
+ },
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "literal",
+ "value": "keycloak"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin"
+ },
+ {
+ "type": "literal",
+ "value": "linkedin_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "notion"
+ },
+ {
+ "type": "literal",
+ "value": "slack"
+ },
+ {
+ "type": "literal",
+ "value": "slack_oidc"
+ },
+ {
+ "type": "literal",
+ "value": "spotify"
+ },
+ {
+ "type": "literal",
+ "value": "twitch"
+ },
+ {
+ "type": "literal",
+ "value": "twitter"
+ },
+ {
+ "type": "literal",
+ "value": "workos"
+ },
+ {
+ "type": "literal",
+ "value": "zoom"
+ },
+ {
+ "type": "literal",
+ "value": "fly"
+ }
+ ]
+ }
+ },
+ {
+ "id": 270,
+ "name": "QueryData",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 273,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 273,
+ "name": "T",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 271,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 272,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 51,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ],
+ "type": {
+ "type": "inferred",
+ "name": "U"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [272]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 115,
+ "character": 49,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L115"
+ }
+ ]
+ }
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "U"
+ },
+ "name": "U",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 274,
+ "name": "QueryError",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 116,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L116"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 52,
+ "name": "PostgrestError",
+ "package": "@supabase/postgrest-js",
+ "qualifiedName": "default"
+ }
+ },
+ {
+ "id": 268,
+ "name": "QueryResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Helper types for query results."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 114,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L114"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 269,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 269,
+ "name": "T",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "PromiseLike"
+ },
+ "typeArguments": [
+ {
+ "type": "inferred",
+ "name": "U"
+ }
+ ],
+ "name": "PromiseLike",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "U"
+ },
+ "name": "U",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "intrinsic",
+ "name": "never"
+ }
+ }
+ },
+ {
+ "id": 1887,
+ "name": "RealtimeChannelOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 11,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1888,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1889,
+ "name": "config",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 12,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1890,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1891,
+ "name": "broadcast",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "self option enables client to receive message it broadcast\nack option instructs server to acknowledge that broadcast message was received\nreplay option instructs server to replay broadcast messages"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 18,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1892,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1894,
+ "name": "ack",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 20,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1895,
+ "name": "replay",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 21,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "ReplayOption"
+ },
+ "name": "ReplayOption",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 1893,
+ "name": "self",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 19,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1894, 1895, 1893]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 18,
+ "character": 20
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1896,
+ "name": "presence",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "key option is used to track presence payload across clients"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 26,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1897,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1899,
+ "name": "enabled",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 28,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 1898,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 27,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1899, 1898]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 26,
+ "character": 19
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1900,
+ "name": "private",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "defines if the channel is private or not and if RLS policies will be used to check data"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 33,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1891, 1896, 1900]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 12,
+ "character": 12
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1889]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 11,
+ "character": 37
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1901,
+ "name": "RealtimeChannelSendResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 115,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2011,
+ "name": "RealtimeClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 33,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2012,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2037,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 53,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2038,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 53,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2039,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2022,
+ "name": "decode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 40,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2021,
+ "name": "encode",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 39,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2034,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 50,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2024,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 42,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2025,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 42,
+ "character": 14
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2026,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 43,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2027,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2016,
+ "name": "heartbeatCallback",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 37,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2017,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 37,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2018,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 2019,
+ "name": "status",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "HeartbeatStatus"
+ },
+ "name": "HeartbeatStatus",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "void"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2015,
+ "name": "heartbeatIntervalMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 36,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2032,
+ "name": "log_level",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 48,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2020,
+ "name": "logger",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 38,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2033,
+ "name": "logLevel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 49,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "LogLevel"
+ },
+ "name": "LogLevel",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2028,
+ "name": "params",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 45,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2029,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 45,
+ "character": 13
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2030,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 46,
+ "character": 8
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2031,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2023,
+ "name": "reconnectAfterMs",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 41,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Function"
+ },
+ "name": "Function",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 2014,
+ "name": "timeout",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 35,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2013,
+ "name": "transport",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 34,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2204,
+ "name": "WebSocketLikeConstructor",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 2035,
+ "name": "worker",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 51,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 2036,
+ "name": "workerUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 52,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [
+ 2037, 2022, 2021, 2034, 2024, 2016, 2015, 2032, 2020, 2033, 2028, 2023, 2014, 2013,
+ 2035, 2036
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 33,
+ "character": 36
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2040,
+ "name": "RealtimeMessage",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 15,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2041,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2043,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2046,
+ "name": "join_ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 20,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2044,
+ "name": "payload",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 2045,
+ "name": "ref",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2042,
+ "name": "topic",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2043, 2046, 2044, 2045, 2042]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 15,
+ "character": 30
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2047,
+ "name": "RealtimePostgresChangesFilter",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 97,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2053,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2123,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2048,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2049,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The type of database change to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 101,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2053,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2052,
+ "name": "filter",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Receive database changes when filter is matched."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 113,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2050,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The database schema to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 105,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2051,
+ "name": "table",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The database table to listen to."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2049, 2052, 2050, 2051]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 97,
+ "character": 99
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2054,
+ "name": "RealtimePostgresChangesPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 94,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2055,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2056,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 94,
+ "character": 53
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2057,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 95,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2058,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 2059,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresInsertPayload",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reference",
+ "target": 2069,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresUpdatePayload",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reference",
+ "target": 2078,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2055,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "RealtimePostgresDeletePayload",
+ "package": "@supabase/realtime-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 2078,
+ "name": "RealtimePostgresDeletePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 87,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2084,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2085,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 87,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2086,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 88,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2087,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2079,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2080,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 90,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2127,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2081,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 91,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2082,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 91,
+ "character": 9
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2083,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 92,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2084,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2080, 2081, 2083]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 89,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2059,
+ "name": "RealtimePostgresInsertPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 73,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2065,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2066,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 73,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2067,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 74,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2068,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2060,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2061,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 76,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2125,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2062,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 77,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2065,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2063,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 78,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2064,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 78,
+ "character": 9
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2061, 2062, 2063]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 75,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2069,
+ "name": "RealtimePostgresUpdatePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 80,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2074,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2075,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 80,
+ "character": 52
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2076,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 81,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2077,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayloadBase"
+ },
+ "name": "RealtimePostgresChangesPayloadBase",
+ "package": "@supabase/realtime-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2070,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2071,
+ "name": "eventType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2126,
+ "name": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2072,
+ "name": "new",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2074,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 2073,
+ "name": "old",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 85,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2074,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2071, 2072, 2073]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 82,
+ "character": 42
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2088,
+ "name": "RealtimePresenceJoinPayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 13,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2094,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2095,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 13,
+ "character": 50
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2096,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 14,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2097,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2089,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2092,
+ "name": "currentPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 18,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2094,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 2090,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 16,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2130,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2091,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 17,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2093,
+ "name": "newPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 19,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2094,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2092, 2090, 2091, 2093]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 15,
+ "character": 5
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2098,
+ "name": "RealtimePresenceLeavePayload",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 21,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2104,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2105,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 21,
+ "character": 51
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2106,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 22,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2107,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2099,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 2102,
+ "name": "currentPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 26,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2104,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ },
+ {
+ "id": 2100,
+ "name": "event",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 24,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "templateLiteral",
+ "head": "",
+ "tail": [
+ [
+ {
+ "type": "reference",
+ "target": 2131,
+ "name": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE",
+ "package": "@supabase/realtime-js"
+ },
+ ""
+ ]
+ ]
+ }
+ },
+ {
+ "id": 2101,
+ "name": "key",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 25,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2103,
+ "name": "leftPresences",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 27,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2104,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [2102, 2100, 2101, 2103]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 23,
+ "character": 5
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2108,
+ "name": "RealtimePresenceState",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 8,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 2112,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2113,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 8,
+ "character": 44
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2114,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 9,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2115,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ]
+ }
+ },
+ "default": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2116,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 10,
+ "character": 4
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2109,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 10,
+ "character": 10
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 2110,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimePresence.d.ts",
+ "line": 11,
+ "character": 4
+ }
+ ],
+ "parameters": [
+ {
+ "id": 2111,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "Presence"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 2112,
+ "name": "T",
+ "package": "@supabase/realtime-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Presence",
+ "package": "@supabase/realtime-js"
+ }
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2117,
+ "name": "RealtimeRemoveChannelResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeClient.d.ts",
+ "line": 22,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "ok"
+ },
+ {
+ "type": "literal",
+ "value": "timed out"
+ },
+ {
+ "type": "literal",
+ "value": "error"
+ }
+ ]
+ }
+ },
+ {
+ "id": 737,
+ "name": "RequestResult",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "a shared result type that encapsulates errors instead of throwing them, allows you to optionally specify the ErrorType"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 82,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 744,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ },
+ {
+ "id": 745,
+ "name": "ErrorType",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ },
+ "default": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 738,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 739,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 83,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 744,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 740,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 84,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [739, 740]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 82,
+ "character": 68
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 741,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 742,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 86,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ {
+ "id": 743,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 87,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Error"
+ },
+ "name": "Error",
+ "package": "typescript"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ },
+ "falseType": {
+ "type": "reference",
+ "target": 745,
+ "name": "ErrorType",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [742, 743]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 85,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 746,
+ "name": "RequestResultSafeDestructure",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "similar to RequestResult except it allows you to destructure the possible shape of the success response\n "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@see",
+ "text": "RequestResult"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 93,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 753,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 747,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 748,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 94,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "id": 749,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 95,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [748, 749]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 93,
+ "character": 46
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 750,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 751,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 97,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intrinsic",
+ "name": "object"
+ },
+ "trueType": {
+ "type": "mapped",
+ "parameter": "K",
+ "parameterType": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 753,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ },
+ "templateType": {
+ "type": "literal",
+ "value": null
+ }
+ },
+ "falseType": {
+ "type": "literal",
+ "value": null
+ }
+ }
+ },
+ {
+ "id": 752,
+ "name": "error",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 100,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [751, 752]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 96,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1276,
+ "name": "RequiredClaims",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1107,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1277,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1284,
+ "name": "aal",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1114,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 1101,
+ "name": "AuthenticatorAssuranceLevels",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 1280,
+ "name": "aud",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1110,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1281,
+ "name": "exp",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1111,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1282,
+ "name": "iat",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1112,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 1278,
+ "name": "iss",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1108,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1283,
+ "name": "role",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1113,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1285,
+ "name": "session_id",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1115,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1279,
+ "name": "sub",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1109,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1284, 1280, 1281, 1282, 1278, 1283, 1285, 1279]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1107,
+ "character": 29
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 995,
+ "name": "ResendParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 593,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 996,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 998,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 595,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 999,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 596,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1000,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1002,
+ "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/dist/module/lib/types.d.ts",
+ "line": 600,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1001,
+ "name": "emailRedirectTo",
+ "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/dist/module/lib/types.d.ts",
+ "line": 598,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1002, 1001]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 596,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 997,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 594,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Extract"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 994,
+ "name": "EmailOtpType",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "signup"
+ },
+ {
+ "type": "literal",
+ "value": "email_change"
+ }
+ ]
+ }
+ ],
+ "name": "Extract",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [998, 999, 997]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 593,
+ "character": 27
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1003,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1006,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 605,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1007,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1008,
+ "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/dist/module/lib/types.d.ts",
+ "line": 607,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1008]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 605,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1005,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 604,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1004,
+ "name": "type",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 603,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Extract"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 993,
+ "name": "MobileOtpType",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "phone_change"
+ }
+ ]
+ }
+ ],
+ "name": "Extract",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1006, 1005, 1004]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 602,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 862,
+ "name": "SignInAnonymouslyCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 394,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 863,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 864,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 395,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 865,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 867,
+ "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/dist/module/lib/types.d.ts",
+ "line": 403,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 866,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 401,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [867, 866]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 395,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [864]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 394,
+ "character": 43
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 911,
+ "name": "SignInWithIdTokenCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 478,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 912,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 916,
+ "name": "access_token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If the ID token contains an "
+ },
+ {
+ "kind": "code",
+ "text": "`at_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " claim, then the hash of this value is compared to the value in the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 484,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 917,
+ "name": "nonce",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If the ID token contains a "
+ },
+ {
+ "kind": "code",
+ "text": "`nonce`"
+ },
+ {
+ "kind": "text",
+ "text": " claim, then the hash of this value is compared to the value in the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 486,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 918,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 487,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 919,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 920,
+ "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/dist/module/lib/types.d.ts",
+ "line": 489,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [920]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 487,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 913,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provider name or OIDC "
+ },
+ {
+ "kind": "code",
+ "text": "`iss`"
+ },
+ {
+ "kind": "text",
+ "text": " value identifying which provider should be used to verify the provided token. Supported names: "
+ },
+ {
+ "kind": "code",
+ "text": "`google`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`apple`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`azure`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`facebook`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`kakao`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`keycloak`"
+ },
+ {
+ "kind": "text",
+ "text": " (deprecated)."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 480,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "google"
+ },
+ {
+ "type": "literal",
+ "value": "apple"
+ },
+ {
+ "type": "literal",
+ "value": "azure"
+ },
+ {
+ "type": "literal",
+ "value": "facebook"
+ },
+ {
+ "type": "literal",
+ "value": "kakao"
+ },
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 914,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 480,
+ "character": 78
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "id": 915,
+ "name": "token",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OIDC ID token issued by the specified provider. The "
+ },
+ {
+ "kind": "code",
+ "text": "`iss`"
+ },
+ {
+ "kind": "text",
+ "text": " claim in the ID token must match the supplied provider. Some ID tokens contain an "
+ },
+ {
+ "kind": "code",
+ "text": "`at_hash`"
+ },
+ {
+ "kind": "text",
+ "text": " which require that you provide an "
+ },
+ {
+ "kind": "code",
+ "text": "`access_token`"
+ },
+ {
+ "kind": "text",
+ "text": " value to be accepted properly. If the token contains a "
+ },
+ {
+ "kind": "code",
+ "text": "`nonce`"
+ },
+ {
+ "kind": "text",
+ "text": " claim you must supply the nonce used to obtain the ID token."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 482,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [916, 917, 918, 913, 915]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 478,
+ "character": 43
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 899,
+ "name": "SignInWithOAuthCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 462,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 900,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 902,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 465,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 903,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 906,
+ "name": "queryParams",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "An object of query params"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 471,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 907,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 471,
+ "character": 22
+ }
+ ],
+ "indexSignatures": [
+ {
+ "id": 908,
+ "name": "__index",
+ "variant": "signature",
+ "kind": 8192,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 472,
+ "character": 12
+ }
+ ],
+ "parameters": [
+ {
+ "id": 909,
+ "name": "key",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 904,
+ "name": "redirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A URL to send the user to after they are confirmed."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 467,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 905,
+ "name": "scopes",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A space-separated list of scopes granted to the OAuth application."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 469,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 910,
+ "name": "skipBrowserRedirect",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to true does not immediately redirect the current browser context to visit the OAuth authorization page for the provider."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 475,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [906, 904, 905, 910]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 465,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 901,
+ "name": "provider",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "One of the providers supported by GoTrue."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 464,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 693,
+ "name": "Provider",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [902, 901]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 462,
+ "character": 41
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 876,
+ "name": "SignInWithPasswordCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 421,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PasswordCredentialsBase"
+ },
+ "name": "PasswordCredentialsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 877,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 878,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 422,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 879,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 880,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 423,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [880]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 422,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [878]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 421,
+ "character": 70
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 881,
+ "name": "SignInWithPasswordlessCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 426,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 882,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 883,
+ "name": "email",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's email address."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 428,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 884,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 429,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 885,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 889,
+ "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/dist/module/lib/types.d.ts",
+ "line": 441,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 888,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 439,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 886,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The redirect url embedded in the email link"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 431,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 887,
+ "name": "shouldCreateUser",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 433,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [889, 888, 886, 887]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 429,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [883, 884]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 426,
+ "character": 48
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 890,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 892,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 446,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 893,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 896,
+ "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/dist/module/lib/types.d.ts",
+ "line": 456,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 897,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Messaging channel to use (e.g. whatsapp or sms)"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 458,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 895,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom data object to store the user's metadata. This maps to the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth.users.raw_user_meta_data`"
+ },
+ {
+ "kind": "text",
+ "text": " column.\n\nThe "
+ },
+ {
+ "kind": "code",
+ "text": "`data`"
+ },
+ {
+ "kind": "text",
+ "text": " should be a JSON object that includes user-specific info, such as their first and last name."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 454,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 894,
+ "name": "shouldCreateUser",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to false, this method will not create a new user. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 448,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [896, 897, 895, 894]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 446,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 891,
+ "name": "phone",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The user's phone number."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 445,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [892, 891]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 443,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1009,
+ "name": "SignInWithSSO",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 610,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1010,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1012,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 613,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1013,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1015,
+ "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/dist/module/lib/types.d.ts",
+ "line": 617,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1014,
+ "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/dist/module/lib/types.d.ts",
+ "line": 615,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1015, 1014]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 613,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1011,
+ "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/dist/module/lib/types.d.ts",
+ "line": 612,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1012, 1011]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 610,
+ "character": 28
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1016,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1017,
+ "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/dist/module/lib/types.d.ts",
+ "line": 621,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1018,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 622,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1019,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1021,
+ "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/dist/module/lib/types.d.ts",
+ "line": 626,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1020,
+ "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/dist/module/lib/types.d.ts",
+ "line": 624,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1021, 1020]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 622,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1017, 1018]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 619,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1262,
+ "name": "SignOut",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1029,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1263,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1264,
+ "name": "scope",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Determines which sessions should be\nlogged out. Global means all\nsessions by this account. Local\nmeans only this session. Others\nmeans all other sessions except the\ncurrent one. When using others,\nthere is no sign-out event fired on\nthe current session!"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1040,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1264]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1029,
+ "character": 22
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1298,
+ "name": "SignOutScope",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1128,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 1297,
+ "name": "SIGN_OUT_SCOPES",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ },
+ {
+ "id": 868,
+ "name": "SignUpWithPasswordCredentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 406,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 732,
+ "typeArguments": [
+ {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PasswordCredentialsBase"
+ },
+ "name": "PasswordCredentialsBase",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 869,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 870,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 407,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 871,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 874,
+ "name": "captchaToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 410,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 875,
+ "name": "channel",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 411,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "sms"
+ },
+ {
+ "type": "literal",
+ "value": "whatsapp"
+ }
+ ]
+ }
+ },
+ {
+ "id": 873,
+ "name": "data",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 409,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "object"
+ }
+ },
+ {
+ "id": 872,
+ "name": "emailRedirectTo",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 408,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [874, 875, 873, 872]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 407,
+ "character": 14
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [870]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 406,
+ "character": 79
+ }
+ ]
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Prettify",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 921,
+ "name": "SolanaWallet",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 492,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 922,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 927,
+ "name": "publicKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 494,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 928,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 929,
+ "name": "toBase58",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 495,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 930,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 495,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 931,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [929]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 494,
+ "character": 16
+ }
+ ]
+ }
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ },
+ {
+ "id": 923,
+ "name": "signIn",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 493,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 924,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 493,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 925,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 926,
+ "name": "inputs",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInInput"
+ },
+ "name": "SolanaSignInInput",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInOutput"
+ },
+ "name": "SolanaSignInOutput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInOutput"
+ },
+ "name": "SolanaSignInOutput",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 932,
+ "name": "signMessage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 497,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 933,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 497,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 934,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "parameters": [
+ {
+ "id": 935,
+ "name": "message",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 936,
+ "name": "encoding",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "utf8"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ },
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [927, 923, 932]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 492,
+ "character": 27
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 937,
+ "name": "SolanaWeb3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 499,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 938,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 939,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 500,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "id": 942,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 505,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 943,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 945,
+ "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/dist/module/lib/types.d.ts",
+ "line": 509,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 946,
+ "name": "signInWithSolana",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 510,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Partial"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/web3/solana.ts",
+ "qualifiedName": "SolanaSignInInput"
+ },
+ "name": "SolanaSignInInput",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "version"
+ },
+ {
+ "type": "literal",
+ "value": "chain"
+ },
+ {
+ "type": "literal",
+ "value": "domain"
+ },
+ {
+ "type": "literal",
+ "value": "uri"
+ },
+ {
+ "type": "literal",
+ "value": "statement"
+ }
+ ]
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ ],
+ "name": "Partial",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 944,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to use with the wallet interface. Some wallets do not allow signing a message for URLs different from the current page."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 507,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [945, 946, 944]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 505,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 941,
+ "name": "statement",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!**"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 504,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 940,
+ "name": "wallet",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Wallet interface to use. If not specified will default to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.solana`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 502,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 921,
+ "name": "SolanaWallet",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [939, 942, 941, 940]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 499,
+ "character": 36
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 947,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 948,
+ "name": "chain",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 513,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "literal",
+ "value": "solana"
+ }
+ },
+ {
+ "id": 949,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Sign in with Solana compatible message. Must include "
+ },
+ {
+ "kind": "code",
+ "text": "`Issued At`"
+ },
+ {
+ "kind": "text",
+ "text": ", "
+ },
+ {
+ "kind": "code",
+ "text": "`URI`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`Version`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 515,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 951,
+ "name": "options",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 518,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 952,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 953,
+ "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/dist/module/lib/types.d.ts",
+ "line": 520,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [953]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 518,
+ "character": 14
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 950,
+ "name": "signature",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Ed25519 signature of the message."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 517,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Uint8Array"
+ },
+ "name": "Uint8Array",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [948, 949, 951, 950]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 512,
+ "character": 4
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 790,
+ "name": "SSOResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 143,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 737,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 791,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 792,
+ "name": "url",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URL to open in a browser which will complete the sign-in flow by\ntaking the user to the identity provider's authentication flow.\n\nOn browsers you can set the URL to "
+ },
+ {
+ "kind": "code",
+ "text": "`window.location.href`"
+ },
+ {
+ "kind": "text",
+ "text": " to take\nthe user to the authentication flow."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 151,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [792]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 143,
+ "character": 40
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResult",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 734,
+ "name": "StrictOmit",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A stricter version of TypeScript's Omit that only allows omitting keys that actually exist.\nThis prevents typos and ensures type safety at compile time.\nUnlike regular Omit, this will error if you try to omit a non-existent key."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 78,
+ "character": 12
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 735,
+ "name": "T",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ },
+ {
+ "id": 736,
+ "name": "K",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 735,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Omit"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 735,
+ "name": "T",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 736,
+ "name": "K",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Omit",
+ "package": "typescript"
+ }
+ },
+ {
+ "id": 242,
+ "name": "SupabaseClientOptions",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 30,
+ "character": 12,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L30"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 267,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 243,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 264,
+ "name": "accessToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional function for using a third-party authentication system with\nSupabase. The function should return an access token or ID token (JWT) by\nobtaining it from the third-party auth SDK. Note that this\nfunction may be called concurrently and many times. Use memoization and\nlocking techniques if this is not supported by the SDKs.\n\nWhen set, the "
+ },
+ {
+ "kind": "code",
+ "text": "`auth`"
+ },
+ {
+ "kind": "text",
+ "text": " namespace of the Supabase client cannot be used.\nCreate another client if you wish to use Supabase Auth and third-party\nauthentications concurrently in the same application."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 108,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L108"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 265,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 108,
+ "character": 16,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L108"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 266,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 247,
+ "name": "auth",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 38,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L38"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 248,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 249,
+ "name": "autoRefreshToken",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Automatically refreshes the token for logged-in users. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 42,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L42"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 256,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If debug messages for authentication client are emitted. Can be used to inspect the behavior of the library."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 74,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L74"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "debug"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 252,
+ "name": "detectSessionInUrl",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Detect a session from the URL. Used for OAuth login callbacks. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 54,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L54"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 255,
+ "name": "flowType",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "OAuth flow to use - defaults to implicit flow. PKCE is recommended for mobile and server-side applications."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 70,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L70"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "flowType"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 257,
+ "name": "lock",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Provide your own locking mechanism based on the environment. By default no locking is done at this time."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 80,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L80"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "lock"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 251,
+ "name": "persistSession",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Whether to persist a logged-in session to storage. Defaults to true."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 50,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L50"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ },
+ {
+ "id": 253,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A storage provider. Used to store the logged-in session."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 58,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L58"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "storage"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ },
+ {
+ "id": 250,
+ "name": "storageKey",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional key name used for storing tokens in local storage."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 46,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L46"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 254,
+ "name": "userStorage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A storage provider to store the user profile separately from the session.\nUseful when you need to store the session information in cookies,\nwithout bloating the data with the redundant user object."
+ }
+ ],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 66,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L66"
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "literal",
+ "value": "userStorage"
+ },
+ "objectType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseAuthClientOptions"
+ },
+ "name": "SupabaseAuthClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [249, 256, 252, 255, 257, 251, 253, 250, 254]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 38,
+ "character": 9,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L38"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 244,
+ "name": "db",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The Postgres schema which your tables belong to. Must be on the list of exposed schemas in Supabase. Defaults to "
+ },
+ {
+ "kind": "code",
+ "text": "`public`"
+ },
+ {
+ "kind": "text",
+ "text": "."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 34,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L34"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 245,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 246,
+ "name": "schema",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 35,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L35"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 267,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [246]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 34,
+ "character": 7,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L34"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 260,
+ "name": "global",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 87,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L87"
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 261,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 262,
+ "name": "fetch",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "A custom "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 91,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L91"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "Fetch"
+ },
+ "name": "Fetch",
+ "package": "@supabase/supabase-js"
+ }
+ },
+ {
+ "id": 263,
+ "name": "headers",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Optional headers for initializing the client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 95,
+ "character": 4,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L95"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Record"
+ },
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ],
+ "name": "Record",
+ "package": "typescript"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [262, 263]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 87,
+ "character": 11,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L87"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 258,
+ "name": "realtime",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Options passed to the realtime-js instance"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 85,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L85"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 2011,
+ "name": "RealtimeClientOptions",
+ "package": "@supabase/realtime-js"
+ }
+ },
+ {
+ "id": 259,
+ "name": "storage",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 86,
+ "character": 2,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L86"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../storage-js/src/StorageClient.ts",
+ "qualifiedName": "StorageClientOptions"
+ },
+ "name": "StorageClientOptions",
+ "package": "@supabase/storage-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [264, 247, 244, 260, 258, 259]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/lib/types.ts",
+ "line": 30,
+ "character": 48,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/lib/types.ts#L30"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1244,
+ "name": "SupportedStorage",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1003,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PromisifyMethods"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Pick"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "Storage"
+ },
+ "name": "Storage",
+ "package": "typescript"
+ },
+ {
+ "type": "union",
+ "types": [
+ {
+ "type": "literal",
+ "value": "getItem"
+ },
+ {
+ "type": "literal",
+ "value": "setItem"
+ },
+ {
+ "type": "literal",
+ "value": "removeItem"
+ }
+ ]
+ }
+ ],
+ "name": "Pick",
+ "package": "typescript"
+ }
+ ],
+ "name": "PromisifyMethods",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 1245,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1246,
+ "name": "isServer",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If set to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": " signals to the library that the storage medium is used\non a server and the values may not be authentic, such as reading from\nrequest cookies. Implementations should not set this to true if the client\nis used on a server that reads storage information from authenticated\nsources, such as a secure database or file."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1011,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1246]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1003,
+ "character": 103
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1327,
+ "name": "UpdateOAuthClientParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Parameters for updating an existing OAuth client.\nAll fields are optional. Only provided fields will be updated.\nOnly relevant when the OAuth 2.1 server is enabled in Supabase Auth."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1206,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 1328,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 1329,
+ "name": "client_name",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Human-readable name of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1208,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1330,
+ "name": "client_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1210,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1333,
+ "name": "grant_types",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed grant types"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1216,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 1299,
+ "name": "OAuthClientGrantType",
+ "package": "@supabase/auth-js"
+ }
+ }
+ },
+ {
+ "id": 1331,
+ "name": "logo_uri",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "URI of the OAuth client's logo"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1212,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 1332,
+ "name": "redirect_uris",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {
+ "isOptional": true
+ },
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Array of allowed redirect URIs"
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1214,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [1329, 1330, 1333, 1331, 1332]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1206,
+ "character": 38
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 793,
+ "name": "UserResponse",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 153,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 746,
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 794,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 795,
+ "name": "user",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 154,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 11,
+ "name": "User",
+ "package": "@supabase/auth-js"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [795]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 153,
+ "character": 56
+ }
+ ]
+ }
+ }
+ ],
+ "name": "RequestResultSafeDestructure",
+ "package": "@supabase/auth-js"
+ }
+ },
+ {
+ "id": 973,
+ "name": "VerifyOtpParams",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 549,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 974,
+ "name": "VerifyMobileOtpParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 982,
+ "name": "VerifyEmailOtpParams",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 990,
+ "name": "VerifyTokenHashParams",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 728,
+ "name": "WeakPassword",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 62,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 729,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 731,
+ "name": "message",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 64,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 730,
+ "name": "reasons",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 63,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "target": 727,
+ "name": "WeakPasswordReasons",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [731, 730]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 62,
+ "character": 27
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 727,
+ "name": "WeakPasswordReasons",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 61,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "indexedAccess",
+ "indexType": {
+ "type": "intrinsic",
+ "name": "number"
+ },
+ "objectType": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPasswordReasons"
+ },
+ "name": "WeakPasswordReasons",
+ "package": "@supabase/auth-js",
+ "preferValues": true
+ }
+ }
+ }
+ },
+ {
+ "id": 972,
+ "name": "Web3Credentials",
+ "variant": "declaration",
+ "kind": 2097152,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 548,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reference",
+ "target": 937,
+ "name": "SolanaWeb3Credentials",
+ "package": "@supabase/auth-js"
+ },
+ {
+ "type": "reference",
+ "target": 955,
+ "name": "EthereumWeb3Credentials",
+ "package": "@supabase/auth-js"
+ }
+ ]
+ }
+ },
+ {
+ "id": 667,
+ "name": "AuthAdminApi",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/AuthAdminApi.d.ts",
+ "line": 2,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 275,
+ "name": "GoTrueAdminApi",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 668,
+ "name": "AuthClient",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/AuthClient.d.ts",
+ "line": 2,
+ "character": 14
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": 361,
+ "name": "GoTrueClient",
+ "package": "@supabase/auth-js",
+ "qualifiedName": "default"
+ }
+ }
+ },
+ {
+ "id": 682,
+ "name": "lockInternals",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 4,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 683,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 684,
+ "name": "debug",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "comment": {
+ "summary": [],
+ "modifierTags": ["@experimental"]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 8,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [684]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 4,
+ "character": 32
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2137,
+ "name": "REALTIME_CHANNEL_STATES",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/realtime-js/dist/module/RealtimeChannel.d.ts",
+ "line": 134,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "query",
+ "queryType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../realtime-js/src/lib/constants.ts",
+ "qualifiedName": "CHANNEL_STATES"
+ },
+ "name": "CHANNEL_STATES",
+ "package": "@supabase/realtime-js",
+ "preferValues": true
+ }
+ }
+ },
+ {
+ "id": 1297,
+ "name": "SIGN_OUT_SCOPES",
+ "variant": "declaration",
+ "kind": 32,
+ "flags": {
+ "isConst": true
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 1127,
+ "character": 21
+ }
+ ],
+ "type": {
+ "type": "typeOperator",
+ "operator": "readonly",
+ "target": {
+ "type": "tuple",
+ "elements": [
+ {
+ "type": "literal",
+ "value": "global"
+ },
+ {
+ "type": "literal",
+ "value": "local"
+ },
+ {
+ "type": "literal",
+ "value": "others"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1,
+ "name": "createClient",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Creates a new Supabase Client."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 27,
+ "character": 13,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L27"
+ }
+ ],
+ "signatures": [
+ {
+ "id": 2,
+ "name": "createClient",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 27,
+ "character": 28,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L27"
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 3,
+ "name": "Database",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "default": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ },
+ {
+ "id": 4,
+ "name": "SchemaNameOrClientOptions",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 5,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "children": [
+ {
+ "id": 6,
+ "name": "PostgrestVersion",
+ "variant": "declaration",
+ "kind": 1024,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 31,
+ "character": 8,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L31"
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "children": [6]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "packages/core/supabase-js/src/index.ts",
+ "line": 31,
+ "character": 6,
+ "url": "https://github.com/supabase/supabase-js/blob/bbfbd92b0c91f04b1cac638ee5db763dc7c89026/packages/core/supabase-js/src/index.ts#L31"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 7,
+ "name": "SchemaName",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "default": {
+ "type": "conditional",
+ "checkType": {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "extendsType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ },
+ "trueType": {
+ "type": "reference",
+ "target": 4,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ "falseType": {
+ "type": "conditional",
+ "checkType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "extendsType": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ "trueType": {
+ "type": "literal",
+ "value": "public"
+ },
+ "falseType": {
+ "type": "intersection",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Exclude"
+ },
+ "typeArguments": [
+ {
+ "type": "typeOperator",
+ "operator": "keyof",
+ "target": {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ },
+ {
+ "type": "literal",
+ "value": "__InternalSupabase"
+ }
+ ],
+ "name": "Exclude",
+ "package": "typescript"
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "parameters": [
+ {
+ "id": 8,
+ "name": "supabaseUrl",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 9,
+ "name": "supabaseKey",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 10,
+ "name": "options",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "reference",
+ "target": 242,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 7,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClientOptions",
+ "package": "@supabase/supabase-js"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": 112,
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 3,
+ "name": "Database",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 4,
+ "name": "SchemaNameOrClientOptions",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ },
+ {
+ "type": "reference",
+ "target": 7,
+ "name": "SchemaName",
+ "package": "@supabase/supabase-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "SupabaseClient",
+ "package": "@supabase/supabase-js",
+ "qualifiedName": "default"
+ }
+ }
+ ]
+ },
+ {
+ "id": 1409,
+ "name": "isAuthApiError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 21,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1410,
+ "name": "isAuthApiError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 21,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1411,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1434,
+ "name": "AuthApiError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1406,
+ "name": "isAuthError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 16,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1407,
+ "name": "isAuthError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 16,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1408,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1424,
+ "name": "AuthError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1415,
+ "name": "isAuthImplicitGrantRedirectError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 60,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1416,
+ "name": "isAuthImplicitGrantRedirectError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 60,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1417,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1491,
+ "name": "AuthImplicitGrantRedirectError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1418,
+ "name": "isAuthRetryableFetchError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 83,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1419,
+ "name": "isAuthRetryableFetchError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 83,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1420,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1545,
+ "name": "AuthRetryableFetchError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1412,
+ "name": "isAuthSessionMissingError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 34,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1413,
+ "name": "isAuthSessionMissingError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 34,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1414,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1466,
+ "name": "AuthSessionMissingError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 1421,
+ "name": "isAuthWeakPasswordError",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 96,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 1422,
+ "name": "isAuthWeakPasswordError",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/errors.d.ts",
+ "line": 96,
+ "character": 24
+ }
+ ],
+ "parameters": [
+ {
+ "id": 1423,
+ "name": "error",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "type": {
+ "type": "predicate",
+ "name": "error",
+ "asserts": false,
+ "targetType": {
+ "type": "reference",
+ "target": 1555,
+ "name": "AuthWeakPasswordError",
+ "package": "@supabase/auth-js"
+ }
+ }
+ }
+ ]
+ },
+ {
+ "id": 669,
+ "name": "navigatorLock",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 670,
+ "name": "navigatorLock",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Implements a global exclusive lock using the Navigator LockManager API. It\nis available on all browsers released after 2022-03-15 with Safari being the\nlast one to release support. If the API is not available, this function will\nthrow. Make sure you check availablility before configuring "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "GoTrueClient",
+ "target": 361
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nYou can turn on debugging by setting the "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase.gotrue-js.locks.debug`"
+ },
+ {
+ "kind": "text",
+ "text": "\nlocal storage item to "
+ },
+ {
+ "kind": "code",
+ "text": "`true`"
+ },
+ {
+ "kind": "text",
+ "text": ".\n\nInternals:\n\nSince the LockManager API does not preserve stack traces for the async\nfunction passed in the "
+ },
+ {
+ "kind": "code",
+ "text": "`request`"
+ },
+ {
+ "kind": "text",
+ "text": " method, a trick is used where acquiring the\nlock releases a previously started promise to run the operation in the "
+ },
+ {
+ "kind": "code",
+ "text": "`fn`"
+ },
+ {
+ "kind": "text",
+ "text": "\nfunction. The lock waits for that promise to finish (with or without error),\nwhile the function will finally wait for the result anyway."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 24
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 671,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 672,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 673,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": " set to true."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 674,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to run once the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 675,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 83
+ }
+ ],
+ "signatures": [
+ {
+ "id": 676,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 48,
+ "character": 83
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 671,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 671,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 685,
+ "name": "processLock",
+ "variant": "declaration",
+ "kind": 64,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 24
+ }
+ ],
+ "signatures": [
+ {
+ "id": 686,
+ "name": "processLock",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Implements a global exclusive lock that works only in the current process.\nUseful for environments like React Native or other non-browser\nsingle-process (i.e. no concept of \"tabs\") environments.\n\nUse "
+ },
+ {
+ "kind": "inline-tag",
+ "tag": "@link",
+ "text": "#navigatorLock"
+ },
+ {
+ "kind": "text",
+ "text": " in browser environments."
+ }
+ ]
+ },
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 24
+ }
+ ],
+ "typeParameters": [
+ {
+ "id": 687,
+ "name": "R",
+ "variant": "typeParam",
+ "kind": 131072,
+ "flags": {}
+ }
+ ],
+ "parameters": [
+ {
+ "id": 688,
+ "name": "name",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "Name of the lock to be acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 689,
+ "name": "acquireTimeout",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "If negative, no timeout. If 0 an error is thrown if\n the lock can't be acquired without waiting. If positive, the lock acquire\n will time out after so many milliseconds. An error is\n a timeout if it has "
+ },
+ {
+ "kind": "code",
+ "text": "`isAcquireTimeout`"
+ },
+ {
+ "kind": "text",
+ "text": " set to true."
+ }
+ ]
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 690,
+ "name": "fn",
+ "variant": "param",
+ "kind": 32768,
+ "flags": {},
+ "comment": {
+ "summary": [
+ {
+ "kind": "text",
+ "text": "The operation to run once the lock is acquired."
+ }
+ ]
+ },
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 691,
+ "name": "__type",
+ "variant": "declaration",
+ "kind": 65536,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 81
+ }
+ ],
+ "signatures": [
+ {
+ "id": 692,
+ "name": "__type",
+ "variant": "signature",
+ "kind": 4096,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/locks.d.ts",
+ "line": 63,
+ "character": 81
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 687,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "target": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.es5.d.ts",
+ "qualifiedName": "Promise"
+ },
+ "typeArguments": [
+ {
+ "type": "reference",
+ "target": 687,
+ "name": "R",
+ "package": "@supabase/auth-js",
+ "refersToTypeParameter": true
+ }
+ ],
+ "name": "Promise",
+ "package": "typescript"
+ }
+ }
+ ]
+ },
+ {
+ "id": 796,
+ "name": "Session",
+ "variant": "reference",
+ "kind": 4194304,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 156,
+ "character": 17
+ }
+ ],
+ "target": 37
+ },
+ {
+ "id": 832,
+ "name": "User",
+ "variant": "reference",
+ "kind": 4194304,
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "packages/core/auth-js/dist/module/lib/types.d.ts",
+ "line": 259,
+ "character": 17
+ }
+ ],
+ "target": 11
+ }
+ ],
+ "groups": [
+ {
+ "title": "Enumerations",
+ "children": [96, 2118, 2123, 2128, 2132]
+ },
+ {
+ "title": "Classes",
+ "children": [
+ 1434, 1424, 1491, 1482, 1567, 1474, 1518, 1545, 1466, 1444, 1555, 1454, 79, 69, 64, 74, 275,
+ 361, 677, 52, 1593, 1902, 1576, 112, 2138
+ ]
+ },
+ {
+ "title": "Interfaces",
+ "children": [
+ 839, 799, 1390, 37, 11, 1044, 1237, 1347, 1107, 1290, 852, 825, 833, 802, 829, 982, 974,
+ 990, 2154, 2204
+ ]
+ },
+ {
+ "title": "Type Aliases",
+ "children": [
+ 797, 695, 694, 1101, 898, 1227, 1224, 1234, 1231, 1092, 1096, 1091, 1093, 1094, 1095, 1269,
+ 1087, 1268, 1270, 1102, 1097, 1088, 1086, 1079, 1386, 1387, 763, 754, 758, 768, 772, 1250,
+ 1319, 994, 954, 955, 815, 814, 86, 1038, 1028, 1047, 1052, 1048, 1059, 1033, 1022, 705,
+ 1247, 1271, 1286, 696, 1078, 1077, 1075, 1074, 1076, 1060, 1266, 1265, 1267, 1073, 1061,
+ 1072, 1065, 1064, 1066, 1070, 993, 1370, 1376, 1303, 1299, 1335, 1302, 1334, 1300, 1301,
+ 777, 1258, 1251, 50, 46, 48, 732, 693, 270, 274, 268, 1887, 1901, 2011, 2040, 2047, 2054,
+ 2078, 2059, 2069, 2088, 2098, 2108, 2117, 737, 746, 1276, 995, 862, 911, 899, 876, 881,
+ 1009, 1262, 1298, 868, 921, 937, 790, 734, 242, 1244, 1327, 793, 973, 728, 727, 972
+ ]
+ },
+ {
+ "title": "Variables",
+ "children": [667, 668, 682, 2137, 1297]
+ },
+ {
+ "title": "Functions",
+ "children": [1, 1409, 1406, 1415, 1418, 1412, 1421, 669, 685]
+ },
+ {
+ "title": "References",
+ "children": [796, 832]
+ }
+ ],
+ "packageName": "@supabase/supabase-js",
+ "readme": [
+ {
+ "kind": "text",
+ "text": " \n\n \n \n \n \n \n \n \n\n
Supabase JS SDK \n\n Isomorphic JavaScript SDK for Supabase - combining Auth, Database, Storage, Functions, and Realtime. \n\n \n Guides \n ·\n Reference Docs \n ·\n TypeDoc \n
\n\n\n\n\n[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)\n[](https://www.npmjs.com/package/@supabase/supabase-js)\n[](#license)\n[](https://pkg.pr.new/~/supabase/supabase-js)\n\n
\n\n## Usage\n\nFirst of all, you need to install the library:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```sh\nnpm install @supabase/supabase-js\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThen you're able to import the library and establish the connection with the database:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Create a single supabase client for interacting with your database\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### UMD\n\nYou can use plain "
+ },
+ {
+ "kind": "code",
+ "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nor even:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\nThen you can use it from a global "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase`"
+ },
+ {
+ "kind": "text",
+ "text": " variable:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```html\n\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### ESM\n\nYou can use "
+ },
+ {
+ "kind": "code",
+ "text": "`\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Custom "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " uses the ["
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
+ },
+ {
+ "kind": "code",
+ "text": "`fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " implementation can be provided as an option. This is most useful in environments where "
+ },
+ {
+ "kind": "code",
+ "text": "`cross-fetch`"
+ },
+ {
+ "kind": "text",
+ "text": " is not compatible, for instance Cloudflare Workers:\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
+ },
+ {
+ "kind": "code",
+ "text": "`stable`"
+ },
+ {
+ "kind": "text",
+ "text": " and "
+ },
+ {
+ "kind": "code",
+ "text": "`lts`"
+ },
+ {
+ "kind": "text",
+ "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
+ },
+ {
+ "kind": "code",
+ "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
+ },
+ {
+ "kind": "text",
+ "text": "\n\n### Testing\n\nThere's a complete guide on how to set up your environment for running locally the "
+ },
+ {
+ "kind": "code",
+ "text": "`supabase-js`"
+ },
+ {
+ "kind": "text",
+ "text": " integration tests. Please refer to [TESTING.md]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "./TESTING.md",
+ "target": 2
+ },
+ {
+ "kind": "text",
+ "text": ").\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ },
+ {
+ "kind": "relative-link",
+ "text": "../../../CONTRIBUTING.md",
+ "target": 3
+ },
+ {
+ "kind": "text",
+ "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
+ }
+ ],
+ "symbolIdMap": {
+ "0": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": ""
+ },
+ "1": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "2": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "createClient"
+ },
+ "3": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "Database"
+ },
+ "4": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaNameOrClientOptions"
+ },
+ "5": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type"
+ },
+ "6": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "7": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "8": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "9": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "10": {
+ "sourceFileName": "src/index.ts",
+ "qualifiedName": "options"
+ },
+ "11": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "12": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.id"
+ },
+ "13": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.app_metadata"
+ },
+ "14": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.user_metadata"
+ },
+ "15": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.aud"
+ },
+ "16": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmation_sent_at"
+ },
+ "17": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.recovery_sent_at"
+ },
+ "18": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_change_sent_at"
+ },
+ "19": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_email"
+ },
+ "20": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.new_phone"
+ },
+ "21": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.invited_at"
+ },
+ "22": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.action_link"
+ },
+ "23": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email"
+ },
+ "24": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone"
+ },
+ "25": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.created_at"
+ },
+ "26": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.confirmed_at"
+ },
+ "27": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.email_confirmed_at"
+ },
+ "28": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.phone_confirmed_at"
+ },
+ "29": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.last_sign_in_at"
+ },
+ "30": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.role"
+ },
+ "31": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.updated_at"
+ },
+ "32": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.identities"
+ },
+ "33": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_anonymous"
+ },
+ "34": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.is_sso_user"
+ },
+ "35": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.factors"
+ },
+ "36": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User.deleted_at"
+ },
+ "37": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "38": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_token"
+ },
+ "39": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.provider_refresh_token"
+ },
+ "40": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.access_token"
+ },
+ "41": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.refresh_token"
+ },
+ "42": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_in"
+ },
+ "43": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.expires_at"
+ },
+ "44": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.token_type"
+ },
+ "45": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session.user"
+ },
+ "46": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestResponse"
+ },
+ "47": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "48": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestSingleResponse"
+ },
+ "49": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "50": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "PostgrestMaybeSingleResponse"
+ },
+ "51": {
+ "sourceFileName": "../postgrest-js/src/types/types.ts",
+ "qualifiedName": "T"
+ },
+ "52": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "53": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "54": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default"
+ },
+ "55": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "context"
+ },
+ "56": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type"
+ },
+ "57": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.message"
+ },
+ "58": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.details"
+ },
+ "59": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.hint"
+ },
+ "60": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "__type.code"
+ },
+ "61": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.details"
+ },
+ "62": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.hint"
+ },
+ "63": {
+ "sourceFileName": "../postgrest-js/src/PostgrestError.ts",
+ "qualifiedName": "default.code"
+ },
+ "64": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "65": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError.__constructor"
+ },
+ "66": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsHttpError"
+ },
+ "67": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "68": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "69": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "70": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError.__constructor"
+ },
+ "71": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsFetchError"
+ },
+ "72": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "73": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "74": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "75": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError.__constructor"
+ },
+ "76": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsRelayError"
+ },
+ "77": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "78": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "79": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "80": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.__constructor"
+ },
+ "81": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError"
+ },
+ "82": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "message"
+ },
+ "83": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "name"
+ },
+ "84": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "context"
+ },
+ "85": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionsError.context"
+ },
+ "86": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionInvokeOptions"
+ },
+ "87": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "88": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "89": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type"
+ },
+ "90": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "92": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.method"
+ },
+ "93": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.region"
+ },
+ "94": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.body"
+ },
+ "95": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "__type.signal"
+ },
+ "96": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion"
+ },
+ "97": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.Any"
+ },
+ "98": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast1"
+ },
+ "99": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApNortheast2"
+ },
+ "100": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSouth1"
+ },
+ "101": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast1"
+ },
+ "102": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.ApSoutheast2"
+ },
+ "103": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.CaCentral1"
+ },
+ "104": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuCentral1"
+ },
+ "105": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest1"
+ },
+ "106": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest2"
+ },
+ "107": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.EuWest3"
+ },
+ "108": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.SaEast1"
+ },
+ "109": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsEast1"
+ },
+ "110": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest1"
+ },
+ "111": {
+ "sourceFileName": "../functions-js/src/types.ts",
+ "qualifiedName": "FunctionRegion.UsWest2"
+ },
+ "112": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "113": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "114": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default"
+ },
+ "115": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "116": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "117": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "118": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "119": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "120": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "121": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "122": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "123": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "124": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "125": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "126": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "127": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "128": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "129": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "130": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "131": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "132": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseUrl"
+ },
+ "133": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "supabaseKey"
+ },
+ "134": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "135": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.auth"
+ },
+ "136": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtime"
+ },
+ "137": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "138": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.realtimeUrl"
+ },
+ "139": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.authUrl"
+ },
+ "140": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageUrl"
+ },
+ "141": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functionsUrl"
+ },
+ "142": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rest"
+ },
+ "143": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "144": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "146": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "147": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "148": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "149": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "150": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "151": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "152": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.changedAccessToken"
+ },
+ "153": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.accessToken"
+ },
+ "154": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "155": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "156": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "157": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseUrl"
+ },
+ "158": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.supabaseKey"
+ },
+ "159": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "160": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.functions"
+ },
+ "161": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "162": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "163": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "TableName"
+ },
+ "164": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Table"
+ },
+ "165": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "166": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.from"
+ },
+ "167": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "ViewName"
+ },
+ "168": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "View"
+ },
+ "169": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "relation"
+ },
+ "170": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "171": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.schema"
+ },
+ "172": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "DynamicSchema"
+ },
+ "173": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "schema"
+ },
+ "174": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "175": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.rpc"
+ },
+ "176": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FnName"
+ },
+ "177": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "Args"
+ },
+ "178": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "FilterBuilder"
+ },
+ "179": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "fn"
+ },
+ "180": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "args"
+ },
+ "181": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "options"
+ },
+ "182": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "183": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.head"
+ },
+ "184": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.get"
+ },
+ "185": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.count"
+ },
+ "186": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "187": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.channel"
+ },
+ "188": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "name"
+ },
+ "189": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "opts"
+ },
+ "190": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "191": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.getChannels"
+ },
+ "192": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "193": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeChannel"
+ },
+ "194": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "channel"
+ },
+ "195": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "196": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.removeAllChannels"
+ },
+ "225": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Database"
+ },
+ "226": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaNameOrClientOptions"
+ },
+ "227": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "228": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "229": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.SchemaName"
+ },
+ "230": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.Schema"
+ },
+ "231": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "default.ClientOptions"
+ },
+ "232": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "233": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "234": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "235": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.__InternalSupabase"
+ },
+ "236": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "237": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "238": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "239": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "240": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type"
+ },
+ "241": {
+ "sourceFileName": "src/SupabaseClient.ts",
+ "qualifiedName": "__type.PostgrestVersion"
+ },
+ "242": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SupabaseClientOptions"
+ },
+ "243": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "244": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.db"
+ },
+ "245": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "246": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.schema"
+ },
+ "247": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.auth"
+ },
+ "248": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "249": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "250": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "251": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "252": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "253": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "254": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "255": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "256": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "257": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "258": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.realtime"
+ },
+ "259": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "260": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.global"
+ },
+ "261": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "262": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "263": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "264": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.accessToken"
+ },
+ "265": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "266": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "267": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "SchemaName"
+ },
+ "268": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryResult"
+ },
+ "269": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "270": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryData"
+ },
+ "271": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "272": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "273": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "274": {
+ "sourceFileName": "src/lib/types.ts",
+ "qualifiedName": "QueryError"
+ },
+ "275": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "276": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "277": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default"
+ },
+ "278": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__0"
+ },
+ "279": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "280": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.url"
+ },
+ "281": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "282": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "283": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "285": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "286": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "287": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "288": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "289": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "290": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "291": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "292": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "293": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "294": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "295": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.url"
+ },
+ "296": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.headers"
+ },
+ "297": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "298": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "300": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "301": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "302": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "303": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "304": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "305": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "306": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "307": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "308": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "309": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "310": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "jwt"
+ },
+ "311": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "scope"
+ },
+ "312": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "313": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "314": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "315": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "316": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.inviteUserByEmail"
+ },
+ "317": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "email"
+ },
+ "318": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "options"
+ },
+ "319": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "320": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "321": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "322": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "323": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.generateLink"
+ },
+ "324": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "325": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "326": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.createUser"
+ },
+ "327": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "328": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "329": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.listUsers"
+ },
+ "330": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "params"
+ },
+ "331": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "332": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "333": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "334": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "335": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "336": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "337": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "338": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.data"
+ },
+ "339": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type"
+ },
+ "340": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.users"
+ },
+ "341": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "__type.error"
+ },
+ "342": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "343": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.getUserById"
+ },
+ "344": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "345": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "346": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.updateUserById"
+ },
+ "347": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "uid"
+ },
+ "348": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "attributes"
+ },
+ "349": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "350": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "default.deleteUser"
+ },
+ "351": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "id"
+ },
+ "352": {
+ "sourceFileName": "../auth-js/src/GoTrueAdminApi.ts",
+ "qualifiedName": "shouldSoftDelete"
+ },
+ "361": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "363": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "364": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default"
+ },
+ "365": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "367": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.admin"
+ },
+ "368": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.mfa"
+ },
+ "369": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.oauth"
+ },
+ "370": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storageKey"
+ },
+ "371": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.flowType"
+ },
+ "372": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "373": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "374": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "375": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "376": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks"
+ },
+ "377": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "378": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "379": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "380": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "381": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "382": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.jwks_cached_at"
+ },
+ "383": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "value"
+ },
+ "384": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshToken"
+ },
+ "385": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.persistSession"
+ },
+ "386": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.storage"
+ },
+ "387": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.userStorage"
+ },
+ "388": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.memoryStorage"
+ },
+ "389": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "390": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "392": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stateChangeEmitters"
+ },
+ "393": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.autoRefreshTicker"
+ },
+ "394": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.visibilityChangedCallback"
+ },
+ "395": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "396": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "397": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshingDeferred"
+ },
+ "398": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initializePromise"
+ },
+ "399": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.detectSessionInUrl"
+ },
+ "400": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.url"
+ },
+ "401": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "402": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "403": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "405": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.hasCustomAuthorizationHeader"
+ },
+ "406": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.suppressGetSessionWarning"
+ },
+ "407": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.fetch"
+ },
+ "408": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "409": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "410": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
+ },
+ "411": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
+ },
+ "412": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
+ },
+ "413": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
+ },
+ "414": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
+ },
+ "415": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lock"
+ },
+ "416": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.lockAcquired"
+ },
+ "417": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.pendingInLock"
+ },
+ "418": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.broadcastChannel"
+ },
+ "419": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logDebugMessages"
+ },
+ "420": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.logger"
+ },
+ "421": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "422": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "423": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "message"
+ },
+ "424": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "args"
+ },
+ "426": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "427": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.initialize"
+ },
+ "429": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "430": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInAnonymously"
+ },
+ "431": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "432": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "433": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signUp"
+ },
+ "434": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "435": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "436": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithPassword"
+ },
+ "437": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "438": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "439": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOAuth"
+ },
+ "440": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "441": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "442": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.exchangeCodeForSession"
+ },
+ "443": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "authCode"
+ },
+ "444": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "445": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithWeb3"
+ },
+ "446": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "447": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "448": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "449": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "450": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "451": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "452": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "453": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "454": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "455": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "456": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "457": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.user"
+ },
+ "458": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "462": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "463": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithIdToken"
+ },
+ "464": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "465": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "466": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithOtp"
+ },
+ "467": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "468": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "469": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.verifyOtp"
+ },
+ "470": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "471": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "472": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signInWithSSO"
+ },
+ "473": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "params"
+ },
+ "474": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "475": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.reauthenticate"
+ },
+ "477": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "478": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resend"
+ },
+ "479": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "480": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "481": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getSession"
+ },
+ "482": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "483": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "484": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "485": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "486": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "487": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "488": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "489": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "490": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "491": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "492": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "493": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "494": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "495": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.session"
+ },
+ "496": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "500": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "501": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUser"
+ },
+ "502": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "504": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "505": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.updateUser"
+ },
+ "506": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "507": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "508": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "509": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "510": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "511": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._updateUser"
+ },
+ "512": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "attributes"
+ },
+ "513": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "514": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "515": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "516": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "517": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.setSession"
+ },
+ "518": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "519": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "520": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "521": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "522": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "523": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._setSession"
+ },
+ "524": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "525": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "526": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "527": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "528": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "529": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.refreshSession"
+ },
+ "530": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "531": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "532": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "533": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "534": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._refreshSession"
+ },
+ "535": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "currentSession"
+ },
+ "536": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "537": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "541": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "542": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.signOut"
+ },
+ "543": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "544": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "545": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "546": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "547": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default._signOut"
+ },
+ "548": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__0"
+ },
+ "549": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "550": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "551": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "552": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "553": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "554": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "555": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "556": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "557": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "558": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "559": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "560": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "561": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "562": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.onAuthStateChange"
+ },
+ "563": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "callback"
+ },
+ "564": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "565": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "566": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "event"
+ },
+ "567": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "session"
+ },
+ "568": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "569": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "570": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "571": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.subscription"
+ },
+ "573": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "574": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.resetPasswordForEmail"
+ },
+ "575": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "email"
+ },
+ "576": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "577": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "578": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "579": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "580": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "581": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "582": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "583": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "584": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "585": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "586": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "587": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "588": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getUserIdentities"
+ },
+ "589": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "590": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "591": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "592": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.identities"
+ },
+ "593": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "594": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "595": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "596": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "597": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "598": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "599": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "600": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.linkIdentity"
+ },
+ "601": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "credentials"
+ },
+ "604": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "605": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.unlinkIdentity"
+ },
+ "606": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "identity"
+ },
+ "607": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "608": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "609": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "610": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "611": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "612": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "613": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "625": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "626": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.startAutoRefresh"
+ },
+ "627": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "628": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.stopAutoRefresh"
+ },
+ "644": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "645": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "default.getClaims"
+ },
+ "646": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "jwt"
+ },
+ "647": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "options"
+ },
+ "648": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "649": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "650": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.allowExpired"
+ },
+ "651": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.jwks"
+ },
+ "652": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "653": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.keys"
+ },
+ "654": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "655": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "656": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "657": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.claims"
+ },
+ "658": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.header"
+ },
+ "659": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "660": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "661": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "662": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "663": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "664": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type"
+ },
+ "665": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.data"
+ },
+ "666": {
+ "sourceFileName": "../auth-js/src/GoTrueClient.ts",
+ "qualifiedName": "__type.error"
+ },
+ "667": {
+ "sourceFileName": "../auth-js/src/AuthAdminApi.ts",
+ "qualifiedName": "AuthAdminApi"
+ },
+ "668": {
+ "sourceFileName": "../auth-js/src/AuthClient.ts",
+ "qualifiedName": "AuthClient"
+ },
+ "669": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "670": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "navigatorLock"
+ },
+ "671": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "672": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "673": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "674": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "675": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "676": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "677": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "678": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.__constructor"
+ },
+ "679": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "NavigatorLockAcquireTimeoutError"
+ },
+ "680": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "message"
+ },
+ "681": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "LockAcquireTimeoutError.isAcquireTimeout"
+ },
+ "682": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "internals"
+ },
+ "683": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "684": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "685": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "686": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "processLock"
+ },
+ "687": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "R"
+ },
+ "688": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "name"
+ },
+ "689": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "690": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "fn"
+ },
+ "691": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "692": {
+ "sourceFileName": "../auth-js/src/lib/locks.ts",
+ "qualifiedName": "__type"
+ },
+ "693": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Provider"
+ },
+ "694": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEventMFA"
+ },
+ "695": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthChangeEvent"
+ },
+ "696": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "LockFunc"
+ },
+ "697": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "698": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "699": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "name"
+ },
+ "700": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "acquireTimeout"
+ },
+ "701": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "fn"
+ },
+ "702": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "703": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "704": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "R"
+ },
+ "705": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueClientOptions"
+ },
+ "706": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "707": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "708": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.headers"
+ },
+ "709": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "710": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "712": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storageKey"
+ },
+ "713": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.detectSessionInUrl"
+ },
+ "714": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.autoRefreshToken"
+ },
+ "715": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.persistSession"
+ },
+ "716": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.storage"
+ },
+ "717": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userStorage"
+ },
+ "718": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.fetch"
+ },
+ "719": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.flowType"
+ },
+ "720": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.debug"
+ },
+ "721": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "722": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "723": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "724": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "args"
+ },
+ "725": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lock"
+ },
+ "726": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hasCustomAuthorizationHeader"
+ },
+ "727": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPasswordReasons"
+ },
+ "728": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "WeakPassword"
+ },
+ "729": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "730": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.reasons"
+ },
+ "731": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "732": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Prettify"
+ },
+ "733": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "734": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "StrictOmit"
+ },
+ "735": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "736": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "K"
+ },
+ "737": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResult"
+ },
+ "738": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "739": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "740": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "741": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "742": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "743": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "744": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "745": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ErrorType"
+ },
+ "746": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequestResultSafeDestructure"
+ },
+ "747": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "748": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "749": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "750": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "751": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "752": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "753": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "754": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponse"
+ },
+ "755": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "756": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "757": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "758": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthResponsePassword"
+ },
+ "759": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "760": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "761": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "762": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weak_password"
+ },
+ "763": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOtpResponse"
+ },
+ "764": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "765": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "766": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "767": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.messageId"
+ },
+ "768": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponse"
+ },
+ "769": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "770": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "771": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "772": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthTokenResponsePassword"
+ },
+ "773": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "774": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "775": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session"
+ },
+ "776": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.weakPassword"
+ },
+ "777": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthResponse"
+ },
+ "778": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "779": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "780": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "781": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "782": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "783": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "784": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "785": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "786": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "787": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "788": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "789": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "790": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SSOResponse"
+ },
+ "791": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "792": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "793": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserResponse"
+ },
+ "794": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "795": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "796": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Session"
+ },
+ "797": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMRMethod"
+ },
+ "798": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "799": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry"
+ },
+ "800": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.method"
+ },
+ "801": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AMREntry.timestamp"
+ },
+ "802": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity"
+ },
+ "803": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.id"
+ },
+ "804": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.user_id"
+ },
+ "805": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_data"
+ },
+ "806": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "807": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "809": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.identity_id"
+ },
+ "810": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.provider"
+ },
+ "811": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.created_at"
+ },
+ "812": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.last_sign_in_at"
+ },
+ "813": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserIdentity.updated_at"
+ },
+ "814": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "FactorType"
+ },
+ "815": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Factor"
+ },
+ "816": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "817": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "818": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.friendly_name"
+ },
+ "819": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factor_type"
+ },
+ "820": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.status"
+ },
+ "821": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "822": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "823": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Type"
+ },
+ "824": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Status"
+ },
+ "825": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata"
+ },
+ "826": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.provider"
+ },
+ "827": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAppMetadata.__index"
+ },
+ "829": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata"
+ },
+ "830": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserMetadata.__index"
+ },
+ "832": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "User"
+ },
+ "833": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes"
+ },
+ "834": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.email"
+ },
+ "835": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.phone"
+ },
+ "836": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.password"
+ },
+ "837": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.nonce"
+ },
+ "838": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UserAttributes.data"
+ },
+ "839": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes"
+ },
+ "840": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.user_metadata"
+ },
+ "841": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.app_metadata"
+ },
+ "842": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.email_confirm"
+ },
+ "843": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.phone_confirm"
+ },
+ "844": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.ban_duration"
+ },
+ "845": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.role"
+ },
+ "846": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.password_hash"
+ },
+ "847": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AdminUserAttributes.id"
+ },
+ "848": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "nonce"
+ },
+ "849": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "email"
+ },
+ "850": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "password"
+ },
+ "851": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "852": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription"
+ },
+ "853": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.id"
+ },
+ "854": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.callback"
+ },
+ "855": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "856": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "857": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "event"
+ },
+ "858": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "session"
+ },
+ "859": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Subscription.unsubscribe"
+ },
+ "860": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "861": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "862": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInAnonymouslyCredentials"
+ },
+ "863": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "864": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "865": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "866": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "867": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "868": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignUpWithPasswordCredentials"
+ },
+ "869": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "870": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "871": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "872": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "873": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "874": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "875": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "876": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordCredentials"
+ },
+ "877": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "878": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "879": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "880": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "881": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithPasswordlessCredentials"
+ },
+ "882": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "883": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "884": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "885": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "886": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "887": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "888": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "889": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "890": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "891": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "892": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "893": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "894": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.shouldCreateUser"
+ },
+ "895": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "896": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "897": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.channel"
+ },
+ "898": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthFlowType"
+ },
+ "899": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithOAuthCredentials"
+ },
+ "900": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "901": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "902": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "903": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "904": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "905": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scopes"
+ },
+ "906": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.queryParams"
+ },
+ "907": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "908": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "910": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "911": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithIdTokenCredentials"
+ },
+ "912": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "913": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.provider"
+ },
+ "914": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "915": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token"
+ },
+ "916": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "917": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nonce"
+ },
+ "918": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "919": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "920": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "921": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWallet"
+ },
+ "922": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "923": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signIn"
+ },
+ "924": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "925": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "926": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "inputs"
+ },
+ "927": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "928": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "929": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.toBase58"
+ },
+ "930": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "931": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "932": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signMessage"
+ },
+ "933": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "934": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "935": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "message"
+ },
+ "936": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "encoding"
+ },
+ "937": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SolanaWeb3Credentials"
+ },
+ "938": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "939": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "940": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "941": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "942": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "943": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "944": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "945": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "946": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithSolana"
+ },
+ "947": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "948": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "949": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "950": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "951": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "952": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "953": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "954": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWallet"
+ },
+ "955": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EthereumWeb3Credentials"
+ },
+ "956": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "957": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "958": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.wallet"
+ },
+ "959": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.statement"
+ },
+ "960": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "961": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "962": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.url"
+ },
+ "963": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "964": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signInWithEthereum"
+ },
+ "965": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "966": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.chain"
+ },
+ "967": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.message"
+ },
+ "968": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.signature"
+ },
+ "969": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "970": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "971": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "972": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Web3Credentials"
+ },
+ "973": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyOtpParams"
+ },
+ "974": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams"
+ },
+ "975": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.phone"
+ },
+ "976": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.token"
+ },
+ "977": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.type"
+ },
+ "978": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyMobileOtpParams.options"
+ },
+ "979": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "980": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "981": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "982": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams"
+ },
+ "983": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.email"
+ },
+ "984": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.token"
+ },
+ "985": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.type"
+ },
+ "986": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyEmailOtpParams.options"
+ },
+ "987": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "988": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "989": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "990": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams"
+ },
+ "991": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.token_hash"
+ },
+ "992": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "VerifyTokenHashParams.type"
+ },
+ "993": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MobileOtpType"
+ },
+ "994": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "EmailOtpType"
+ },
+ "995": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "ResendParams"
+ },
+ "996": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "997": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "998": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "999": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1000": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1001": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.emailRedirectTo"
+ },
+ "1002": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1003": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1004": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1005": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.phone"
+ },
+ "1006": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1007": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1008": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1009": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignInWithSSO"
+ },
+ "1010": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1011": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.providerId"
+ },
+ "1012": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1013": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1014": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1015": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1016": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1017": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.domain"
+ },
+ "1018": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1019": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1020": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirectTo"
+ },
+ "1021": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.captchaToken"
+ },
+ "1022": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateSignupLinkParams"
+ },
+ "1023": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1024": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1025": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1026": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.password"
+ },
+ "1027": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1028": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateInviteOrMagiclinkParams"
+ },
+ "1029": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1030": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1031": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1032": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1033": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateRecoveryLinkParams"
+ },
+ "1034": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1035": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1036": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1037": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1038": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateEmailChangeLinkParams"
+ },
+ "1039": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1040": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1041": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1042": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.newEmail"
+ },
+ "1043": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.options"
+ },
+ "1044": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions"
+ },
+ "1045": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.data"
+ },
+ "1046": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkOptions.redirectTo"
+ },
+ "1047": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkParams"
+ },
+ "1048": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkResponse"
+ },
+ "1049": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1050": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.properties"
+ },
+ "1051": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1052": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkProperties"
+ },
+ "1053": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1054": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.action_link"
+ },
+ "1055": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email_otp"
+ },
+ "1056": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.hashed_token"
+ },
+ "1057": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_to"
+ },
+ "1058": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.verification_type"
+ },
+ "1059": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GenerateLinkType"
+ },
+ "1060": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollParams"
+ },
+ "1061": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAUnenrollParams"
+ },
+ "1062": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1063": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factorId"
+ },
+ "1064": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyTOTPParams"
+ },
+ "1065": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyPhoneParams"
+ },
+ "1066": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParamFields"
+ },
+ "1067": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1068": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.webauthn"
+ },
+ "1069": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1070": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyWebauthnParams"
+ },
+ "1071": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1072": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAVerifyParams"
+ },
+ "1073": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFATOTPChannel"
+ },
+ "1074": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeTOTPParams"
+ },
+ "1075": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengePhoneParams"
+ },
+ "1076": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeWebauthnParams"
+ },
+ "1077": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeParams"
+ },
+ "1078": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAChallengeAndVerifyParams"
+ },
+ "1079": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponseData"
+ },
+ "1080": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1081": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.access_token"
+ },
+ "1082": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_type"
+ },
+ "1083": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.expires_in"
+ },
+ "1084": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.refresh_token"
+ },
+ "1085": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1086": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAVerifyResponse"
+ },
+ "1087": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollResponse"
+ },
+ "1088": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAUnenrollResponse"
+ },
+ "1089": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1090": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1091": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeTOTPResponse"
+ },
+ "1092": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengePhoneResponse"
+ },
+ "1093": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponse"
+ },
+ "1094": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnResponseDataJSON"
+ },
+ "1095": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeWebauthnServerResponse"
+ },
+ "1096": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAChallengeResponse"
+ },
+ "1097": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAListFactorsResponse"
+ },
+ "1098": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1099": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.all"
+ },
+ "1100": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "T"
+ },
+ "1101": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthenticatorAssuranceLevels"
+ },
+ "1102": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAGetAuthenticatorAssuranceLevelResponse"
+ },
+ "1103": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1104": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentLevel"
+ },
+ "1105": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextLevel"
+ },
+ "1106": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.currentAuthenticationMethods"
+ },
+ "1107": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi"
+ },
+ "1108": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1109": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1110": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1111": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1112": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1113": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1114": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "issuer"
+ },
+ "1115": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1116": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1117": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1118": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1119": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1120": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "phone"
+ },
+ "1121": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1122": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1123": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1124": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorType"
+ },
+ "1125": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "friendlyName"
+ },
+ "1126": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.enroll"
+ },
+ "1127": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1128": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1129": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1130": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1131": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1132": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1133": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1134": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1135": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1136": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1137": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1138": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1139": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1140": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1141": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1142": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1143": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1144": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1145": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1146": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1147": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "channel"
+ },
+ "1148": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1149": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1150": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1151": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1152": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1153": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1154": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1155": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1156": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1157": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1158": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1159": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1160": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1161": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1162": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1163": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1164": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpId"
+ },
+ "1165": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.rpOrigins"
+ },
+ "1166": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1167": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1168": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1169": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1170": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "data"
+ },
+ "1171": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1172": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "id"
+ },
+ "1173": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "type"
+ },
+ "1174": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "expires_at"
+ },
+ "1175": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1176": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1177": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1178": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1179": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1180": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1181": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1182": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1183": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.credential_options"
+ },
+ "1184": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1185": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.publicKey"
+ },
+ "1186": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "error"
+ },
+ "1187": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challenge"
+ },
+ "1188": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1189": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1190": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1191": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1192": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1193": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1194": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1195": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1196": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1197": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1198": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1199": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1200": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1201": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1202": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1203": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1204": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1205": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1206": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "challengeId"
+ },
+ "1207": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "webauthn"
+ },
+ "1208": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.verify"
+ },
+ "1209": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1210": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1211": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.unenroll"
+ },
+ "1212": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1213": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1214": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.challengeAndVerify"
+ },
+ "1215": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1216": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1217": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "factorId"
+ },
+ "1218": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "code"
+ },
+ "1219": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1220": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.listFactors"
+ },
+ "1221": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1222": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.getAuthenticatorAssuranceLevel"
+ },
+ "1223": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueMFAApi.webauthn"
+ },
+ "1224": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorResponse"
+ },
+ "1225": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1226": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1227": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminDeleteFactorParams"
+ },
+ "1228": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1229": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1230": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1231": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsResponse"
+ },
+ "1232": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1233": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.factors"
+ },
+ "1234": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAAdminListFactorsParams"
+ },
+ "1235": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1236": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.userId"
+ },
+ "1237": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi"
+ },
+ "1238": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1239": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.listFactors"
+ },
+ "1240": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1241": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1242": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminMFAApi.deleteFactor"
+ },
+ "1243": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1244": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SupportedStorage"
+ },
+ "1245": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1246": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.isServer"
+ },
+ "1247": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "InitializeResult"
+ },
+ "1248": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1249": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1250": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CallRefreshTokenResult"
+ },
+ "1251": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "Pagination"
+ },
+ "1252": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1253": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.nextPage"
+ },
+ "1254": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.lastPage"
+ },
+ "1255": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.total"
+ },
+ "1256": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1258": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "PageParams"
+ },
+ "1259": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1260": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.page"
+ },
+ "1261": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.perPage"
+ },
+ "1262": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOut"
+ },
+ "1263": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1264": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1265": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollTOTPParams"
+ },
+ "1266": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollPhoneParams"
+ },
+ "1267": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "MFAEnrollWebauthnParams"
+ },
+ "1268": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollTOTPResponse"
+ },
+ "1269": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollPhoneResponse"
+ },
+ "1270": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthMFAEnrollWebauthnResponse"
+ },
+ "1271": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtHeader"
+ },
+ "1272": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1273": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.alg"
+ },
+ "1274": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.kid"
+ },
+ "1275": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.typ"
+ },
+ "1276": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "RequiredClaims"
+ },
+ "1277": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1278": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iss"
+ },
+ "1279": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.sub"
+ },
+ "1280": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1281": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.exp"
+ },
+ "1282": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.iat"
+ },
+ "1283": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.role"
+ },
+ "1284": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aal"
+ },
+ "1285": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.session_id"
+ },
+ "1286": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JwtPayload"
+ },
+ "1287": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1288": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1290": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK"
+ },
+ "1291": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kty"
+ },
+ "1292": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.key_ops"
+ },
+ "1293": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.alg"
+ },
+ "1294": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.kid"
+ },
+ "1295": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "JWK.__index"
+ },
+ "1297": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SIGN_OUT_SCOPES"
+ },
+ "1298": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "SignOutScope"
+ },
+ "1299": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientGrantType"
+ },
+ "1300": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponseType"
+ },
+ "1301": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientType"
+ },
+ "1302": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientRegistrationType"
+ },
+ "1303": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClient"
+ },
+ "1304": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1305": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1306": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1307": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_secret"
+ },
+ "1308": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_type"
+ },
+ "1309": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.token_endpoint_auth_method"
+ },
+ "1310": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.registration_type"
+ },
+ "1311": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1312": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1313": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1314": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1315": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1316": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1317": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.created_at"
+ },
+ "1318": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.updated_at"
+ },
+ "1319": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "CreateOAuthClientParams"
+ },
+ "1320": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1321": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1322": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1323": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1324": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1325": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.response_types"
+ },
+ "1326": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1327": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "UpdateOAuthClientParams"
+ },
+ "1328": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1329": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1330": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1331": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1332": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uris"
+ },
+ "1333": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.grant_types"
+ },
+ "1334": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientResponse"
+ },
+ "1335": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthClientListResponse"
+ },
+ "1336": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1337": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1338": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1339": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1340": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.aud"
+ },
+ "1341": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1342": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1343": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1344": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1345": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.clients"
+ },
+ "1346": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1347": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi"
+ },
+ "1348": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1349": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.listClients"
+ },
+ "1350": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1351": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1352": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.createClient"
+ },
+ "1353": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1354": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1355": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.getClient"
+ },
+ "1356": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1357": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1358": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.updateClient"
+ },
+ "1359": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1360": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "params"
+ },
+ "1361": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1362": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.deleteClient"
+ },
+ "1363": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1364": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1365": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.data"
+ },
+ "1366": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1367": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1368": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "GoTrueAdminOAuthApi.regenerateClientSecret"
+ },
+ "1369": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "clientId"
+ },
+ "1370": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationClient"
+ },
+ "1371": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1372": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_id"
+ },
+ "1373": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_name"
+ },
+ "1374": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client_uri"
+ },
+ "1375": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.logo_uri"
+ },
+ "1376": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "OAuthAuthorizationDetails"
+ },
+ "1377": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1378": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.authorization_id"
+ },
+ "1379": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_uri"
+ },
+ "1380": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.client"
+ },
+ "1381": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.user"
+ },
+ "1382": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1383": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1384": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.email"
+ },
+ "1385": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.scope"
+ },
+ "1386": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthAuthorizationDetailsResponse"
+ },
+ "1387": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthConsentResponse"
+ },
+ "1388": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1389": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.redirect_url"
+ },
+ "1390": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi"
+ },
+ "1391": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1392": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.getAuthorizationDetails"
+ },
+ "1393": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1394": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1395": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.approveAuthorization"
+ },
+ "1396": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1397": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1398": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1399": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1400": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1401": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "AuthOAuthServerApi.denyAuthorization"
+ },
+ "1402": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "authorizationId"
+ },
+ "1403": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "options"
+ },
+ "1404": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type"
+ },
+ "1405": {
+ "sourceFileName": "../auth-js/src/lib/types.ts",
+ "qualifiedName": "__type.skipBrowserRedirect"
+ },
+ "1406": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1407": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthError"
+ },
+ "1408": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1409": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1410": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthApiError"
+ },
+ "1411": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1412": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1413": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthSessionMissingError"
+ },
+ "1414": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1415": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1416": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthImplicitGrantRedirectError"
+ },
+ "1417": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1418": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1419": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthRetryableFetchError"
+ },
+ "1420": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1421": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1422": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "isAuthWeakPasswordError"
+ },
+ "1423": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "error"
+ },
+ "1424": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1425": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__constructor"
+ },
+ "1426": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError"
+ },
+ "1427": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1428": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1429": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1430": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1431": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1432": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1433": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1434": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1435": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.__constructor"
+ },
+ "1436": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError"
+ },
+ "1437": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1438": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1439": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1440": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthApiError.status"
+ },
+ "1441": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1442": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1443": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1444": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1445": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.__constructor"
+ },
+ "1446": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError"
+ },
+ "1447": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1448": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "originalError"
+ },
+ "1449": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthUnknownError.originalError"
+ },
+ "1450": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1451": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1452": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.status"
+ },
+ "1453": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1454": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1455": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.__constructor"
+ },
+ "1456": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError"
+ },
+ "1457": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1458": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "name"
+ },
+ "1459": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1460": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "code"
+ },
+ "1461": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1462": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1463": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1464": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1465": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1466": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1467": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError.__constructor"
+ },
+ "1468": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthSessionMissingError"
+ },
+ "1469": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1470": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1471": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1472": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1473": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1474": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1475": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError.__constructor"
+ },
+ "1476": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidTokenResponseError"
+ },
+ "1477": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1478": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1479": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1480": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1481": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1482": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1483": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError.__constructor"
+ },
+ "1484": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidCredentialsError"
+ },
+ "1485": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1486": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1487": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1488": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1489": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1490": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1491": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1492": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.__constructor"
+ },
+ "1493": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError"
+ },
+ "1494": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1495": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1496": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1497": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1498": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1499": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.details"
+ },
+ "1500": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1501": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1502": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1503": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1504": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthImplicitGrantRedirectError.toJSON"
+ },
+ "1505": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1506": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1507": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1508": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1509": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1510": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1511": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1512": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1513": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1514": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1515": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1516": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1517": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1518": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1519": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.__constructor"
+ },
+ "1520": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError"
+ },
+ "1521": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1522": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "details"
+ },
+ "1523": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1524": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1525": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1526": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.details"
+ },
+ "1527": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1528": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1529": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1530": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1531": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthPKCEGrantCodeExchangeError.toJSON"
+ },
+ "1532": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1533": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.name"
+ },
+ "1534": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.message"
+ },
+ "1535": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1536": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.details"
+ },
+ "1537": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type"
+ },
+ "1538": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1539": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "__type.code"
+ },
+ "1540": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1541": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1542": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1543": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1544": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1545": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1546": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError.__constructor"
+ },
+ "1547": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthRetryableFetchError"
+ },
+ "1548": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1549": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1550": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1551": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1552": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1553": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1554": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1555": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1556": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.__constructor"
+ },
+ "1557": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError"
+ },
+ "1558": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1559": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "status"
+ },
+ "1560": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "reasons"
+ },
+ "1561": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthWeakPasswordError.reasons"
+ },
+ "1562": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1563": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1564": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1565": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1566": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1567": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1568": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError.__constructor"
+ },
+ "1569": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthInvalidJwtError"
+ },
+ "1570": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "message"
+ },
+ "1571": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.name"
+ },
+ "1572": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "CustomAuthError.status"
+ },
+ "1573": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.code"
+ },
+ "1574": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1575": {
+ "sourceFileName": "../auth-js/src/lib/errors.ts",
+ "qualifiedName": "AuthError.__isAuthError"
+ },
+ "1576": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1577": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1578": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default"
+ },
+ "1579": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "channel"
+ },
+ "1580": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "opts"
+ },
+ "1581": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.channel"
+ },
+ "1582": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.state"
+ },
+ "1583": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.pendingDiffs"
+ },
+ "1584": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.joinRef"
+ },
+ "1585": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.enabled"
+ },
+ "1586": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "default.caller"
+ },
+ "1587": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1588": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onJoin"
+ },
+ "1589": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onLeave"
+ },
+ "1590": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.onSync"
+ },
+ "1591": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1592": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
+ },
+ "1593": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1594": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1595": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default"
+ },
+ "1596": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "topic"
+ },
+ "1597": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "params"
+ },
+ "1598": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "socket"
+ },
+ "1599": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.topic"
+ },
+ "1600": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.params"
+ },
+ "1601": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.socket"
+ },
+ "1602": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.bindings"
+ },
+ "1603": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1604": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1606": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1607": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1608": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
+ },
+ "1609": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1610": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1612": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.callback"
+ },
+ "1613": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1614": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.timeout"
+ },
+ "1615": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.state"
+ },
+ "1616": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinedOnce"
+ },
+ "1617": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.joinPush"
+ },
+ "1618": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.rejoinTimer"
+ },
+ "1619": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.pushBuffer"
+ },
+ "1620": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presence"
+ },
+ "1621": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.broadcastEndpointURL"
+ },
+ "1622": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subTopic"
+ },
+ "1623": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.private"
+ },
+ "1624": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1625": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.subscribe"
+ },
+ "1626": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1627": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1628": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1629": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "status"
+ },
+ "1630": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "err"
+ },
+ "1631": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1632": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1633": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.presenceState"
+ },
+ "1634": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1635": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1636": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1638": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1639": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1640": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.track"
+ },
+ "1641": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1642": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1643": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1645": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1646": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1647": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1649": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1650": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.untrack"
+ },
+ "1651": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1652": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1653": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1655": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1656": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1657": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1658": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1659": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1660": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1661": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1662": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1663": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1664": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1665": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1666": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1667": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1669": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1670": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1671": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1672": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1673": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1674": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1675": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1676": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1677": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1678": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1679": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1680": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1682": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1683": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1684": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1685": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1686": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1687": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1688": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1689": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1690": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1691": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1692": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1693": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1695": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1696": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1697": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1698": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1699": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1700": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1701": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1702": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1703": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1704": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1706": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1707": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1708": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1709": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1710": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1711": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1712": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1713": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1714": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1715": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1717": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1718": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1719": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1720": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1721": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1722": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1723": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1724": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1725": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1726": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1728": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1729": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1730": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
},
- {
- "title": "Type Aliases",
- "children": [166, 170, 164, 138]
+ "1731": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- {
- "title": "Functions",
- "children": [1]
- }
- ],
- "packageName": "@supabase/supabase-js",
- "readme": [
- {
- "kind": "text",
- "text": "# "
+ "1732": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`supabase-js`"
+ "1733": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
},
- {
- "kind": "text",
- "text": " - Isomorphic JavaScript Client for Supabase.\n\n- **Documentation:** https://supabase.com/docs/reference/javascript/start\n- TypeDoc: https://supabase.github.io/supabase-js/supabase-js/v2/spec.json\n\n\n\n[](https://pkg.pr.new/~/supabase/supabase-js)\n\n
\n\n## Usage\n\nFirst of all, you need to install the library:\n\n"
+ "1734": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1735": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1736": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1737": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1738": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1739": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1740": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1741": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1742": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1743": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1744": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1745": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1746": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1747": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1748": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1749": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1750": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1752": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1753": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1754": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1755": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1757": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1758": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1759": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1760": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1761": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1762": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1763": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1764": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1765": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1766": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1767": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1768": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.meta"
+ },
+ "1769": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1770": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replayed"
+ },
+ "1771": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.id"
+ },
+ "1772": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1773": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1774": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1775": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1776": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1777": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1778": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1779": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1780": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1781": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1782": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1783": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1784": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1785": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1786": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1787": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1788": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1789": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1790": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1792": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1793": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1794": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1795": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1796": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1797": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1798": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1799": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1800": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1801": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1802": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1803": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1804": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1805": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1806": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1807": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1809": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1810": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1811": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1812": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1813": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1814": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1815": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1816": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1817": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1818": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1819": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1820": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1821": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1822": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1823": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1824": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1826": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1827": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1828": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1829": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1830": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1831": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1832": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1833": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1834": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1835": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1836": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1837": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1838": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.on"
+ },
+ "1839": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "1840": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1841": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1843": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "type"
+ },
+ "1844": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "filter"
+ },
+ "1845": {
+ "sourceFileName": "",
+ "qualifiedName": "__type"
+ },
+ "1846": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "callback"
+ },
+ "1847": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1848": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1849": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1850": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1851": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.httpSend"
+ },
+ "1852": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "event"
+ },
+ "1853": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1854": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1855": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1856": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.timeout"
+ },
+ "1857": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1858": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1859": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1860": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.success"
+ },
+ "1861": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.status"
+ },
+ "1862": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.error"
+ },
+ "1863": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1864": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.send"
+ },
+ "1865": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "args"
+ },
+ "1866": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1867": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.type"
+ },
+ "1868": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
+ },
+ "1869": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.payload"
+ },
+ "1870": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1872": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "opts"
+ },
+ "1873": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1874": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1876": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1877": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.updateJoinPayload"
+ },
+ "1878": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "payload"
+ },
+ "1879": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1880": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1882": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1883": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.unsubscribe"
+ },
+ "1884": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "timeout"
+ },
+ "1885": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1886": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "default.teardown"
+ },
+ "1887": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelOptions"
+ },
+ "1888": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1889": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.config"
+ },
+ "1890": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1891": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.broadcast"
+ },
+ "1892": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1893": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.self"
+ },
+ "1894": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.ack"
+ },
+ "1895": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.replay"
+ },
+ "1896": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.presence"
+ },
+ "1897": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
+ },
+ "1898": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.key"
+ },
+ "1899": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.enabled"
+ },
+ "1900": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.private"
+ },
+ "1901": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimeChannelSendResponse"
+ },
+ "1902": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
+ },
+ "1903": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.__constructor"
+ },
+ "1904": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default"
+ },
+ "1905": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "endPoint"
+ },
+ "1906": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "options"
+ },
+ "1907": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessTokenValue"
+ },
+ "1908": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.apiKey"
+ },
+ "1909": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channels"
+ },
+ "1910": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endPoint"
+ },
+ "1911": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.httpEndpoint"
+ },
+ "1912": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.headers"
+ },
+ "1913": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "1914": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1916": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.params"
+ },
+ "1917": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
+ },
+ "1918": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "1920": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.timeout"
+ },
+ "1921": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.transport"
+ },
+ "1922": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatIntervalMs"
+ },
+ "1923": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatTimer"
+ },
+ "1924": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.pendingHeartbeatRef"
},
- {
- "kind": "code",
- "text": "```sh\nnpm install @supabase/supabase-js\n```"
+ "1925": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.heartbeatCallback"
},
- {
- "kind": "text",
- "text": "\n\nThen you're able to import the library and establish the connection with the database:\n\n"
+ "1926": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Create a single supabase client for interacting with your database\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')\n```"
+ "1927": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n### UMD\n\nYou can use plain "
+ "1928": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "code",
- "text": "`\n```"
+ "1931": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logger"
},
- {
- "kind": "text",
- "text": "\n\nor even:\n\n"
+ "1932": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.logLevel"
},
- {
- "kind": "code",
- "text": "```html\n\n```"
+ "1933": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.encode"
},
- {
- "kind": "text",
- "text": "\n\nThen you can use it from a global "
+ "1934": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.decode"
},
- {
- "kind": "code",
- "text": "`supabase`"
+ "1935": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.reconnectAfterMs"
},
- {
- "kind": "text",
- "text": " variable:\n\n"
+ "1936": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.conn"
},
- {
- "kind": "code",
- "text": "```html\n\n```"
+ "1937": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendBuffer"
},
- {
- "kind": "text",
- "text": "\n\n### ESM\n\nYou can use "
+ "1938": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.serializer"
},
- {
- "kind": "code",
- "text": "`\n```"
+ "1941": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.open"
},
- {
- "kind": "text",
- "text": "\n\n### Deno\n\nYou can use supabase-js in the Deno runtime via [JSR](https://jsr.io/@supabase/supabase-js):\n\n"
+ "1942": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.close"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from 'jsr:@supabase/supabase-js@2'\n```"
+ "1943": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.error"
},
- {
- "kind": "text",
- "text": "\n\n### Custom "
+ "1944": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.message"
},
- {
- "kind": "code",
- "text": "`fetch`"
+ "1945": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.fetch"
},
- {
- "kind": "text",
- "text": " implementation\n\n"
+ "1946": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "code",
- "text": "`supabase-js`"
+ "1947": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "text",
- "text": " uses the ["
+ "1948": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "input"
},
- {
- "kind": "code",
- "text": "`cross-fetch`"
+ "1949": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "init"
},
- {
- "kind": "text",
- "text": "](https://www.npmjs.com/package/cross-fetch) library to make HTTP requests, but an alternative "
+ "1950": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "fetch"
},
- {
- "kind": "code",
- "text": "`fetch`"
+ "1951": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "input"
},
- {
- "kind": "text",
- "text": " implementation can be provided as an option. This is most useful in environments where "
+ "1952": {
+ "sourceFileName": "../../../node_modules/@types/node/globals.d.ts",
+ "qualifiedName": "init"
},
- {
- "kind": "code",
- "text": "`cross-fetch`"
+ "1953": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.accessToken"
},
- {
- "kind": "text",
- "text": " is not compatible, for instance Cloudflare Workers:\n\n"
+ "1954": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```js\nimport { createClient } from '@supabase/supabase-js'\n\n// Provide a custom `fetch` implementation as an option\nconst supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {\n global: {\n fetch: (...args) => fetch(...args),\n },\n})\n```"
+ "1955": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n## Support Policy\n\nThis section outlines the scope of support for various runtime environments in Supabase JavaScript client.\n\n### Node.js\n\nWe only support Node.js versions that are in **Active LTS** or **Maintenance** status as defined by the [official Node.js release schedule](https://nodejs.org/en/about/previous-releases#release-schedule). This means we support versions that are currently receiving long-term support and critical bug fixes.\n\nWhen a Node.js version reaches end-of-life and is no longer in Active LTS or Maintenance status, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Deno\n\nWe support Deno versions that are currently receiving active development and security updates. We follow the [official Deno release schedule](https://docs.deno.com/runtime/fundamentals/stability_and_releases/) and only support versions from the "
+ "1956": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.worker"
},
- {
- "kind": "code",
- "text": "`stable`"
+ "1957": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerUrl"
},
- {
- "kind": "text",
- "text": " and "
+ "1958": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.workerRef"
},
- {
- "kind": "code",
- "text": "`lts`"
+ "1962": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- {
- "kind": "text",
- "text": " release channels.\n\nWhen a Deno version reaches end-of-life and is no longer receiving security updates, Supabase will drop it in a **minor release**, and **this won't be considered a breaking change**.\n\n### Important Notes\n\n- **Experimental features**: Features marked as experimental may be removed or changed without notice\n\n## Development\n\nThis package is part of the [Supabase JavaScript monorepo](https://github.com/supabase/supabase-js). To work on this package:\n\n### Building\n\n"
+ "1963": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connect"
},
- {
- "kind": "code",
- "text": "```bash\n# From the monorepo root\nnpx nx build supabase-js\n\n# Or with watch mode for development\nnpx nx build supabase-js --watch\n```"
+ "1964": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- {
- "kind": "text",
- "text": "\n\n### Testing\n\n**Important:** The test suite includes tests for multiple runtime environments (Node.js, Deno, Bun, Expo, Next.js). Each environment has its own test runner and specific requirements.\n\n#### Prerequisites for All Integration Tests\n\n1. **Docker** must be installed and running\n2. **Supabase CLI** must be installed ("
+ "1965": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.endpointURL"
},
- {
- "kind": "code",
- "text": "`npm install -g supabase`"
+ "1966": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- {
- "kind": "text",
- "text": " or via package manager)\n3. **Local Supabase instance** must be started:\n\n"
+ "1967": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.disconnect"
},
- {
- "kind": "code",
- "text": "```bash\n# Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# Start Supabase (downloads and starts all required containers)\nnpx supabase start\n\n# The output will show:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Studio URL: http://127.0.0.1:54323\n# - Anon key: [your-anon-key]\n# - Service role key: [your-service-role-key] # Important for some tests!\n\n# Return to monorepo root for running tests\ncd ../../..\n```"
+ "1968": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "code"
},
- {
- "kind": "text",
- "text": "\n\n#### Test Scripts Overview\n\n| Script | Description | Requirements |\n| -------------------------- | ----------------------------------------- | --------------------------------------- |\n| "
+ "1969": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "reason"
},
- {
- "kind": "code",
- "text": "`test`"
+ "1970": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
},
- {
- "kind": "text",
- "text": " | Runs unit tests + type checking | None |\n| "
+ "1971": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.getChannels"
},
- {
- "kind": "code",
- "text": "`test:all`"
+ "1972": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
},
- {
- "kind": "text",
- "text": " | Unit + integration + browser tests | Supabase running |\n| "
+ "1973": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeChannel"
},
- {
- "kind": "code",
- "text": "`test:run`"
+ "1974": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "channel"
},
- {
- "kind": "text",
- "text": " | Jest unit tests only | None |\n| "
+ "1975": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
},
- {
- "kind": "code",
- "text": "`test:unit`"
+ "1976": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.removeAllChannels"
},
- {
- "kind": "text",
- "text": " | Jest unit tests in test/unit directory | None |\n| "
+ "1977": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
},
- {
- "kind": "code",
- "text": "`test:coverage`"
+ "1978": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.log"
},
- {
- "kind": "text",
- "text": " | Unit tests with coverage report | None |\n| "
+ "1979": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "kind"
},
- {
- "kind": "code",
- "text": "`test:integration`"
+ "1980": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "msg"
},
- {
- "kind": "text",
- "text": " | Node.js integration tests | Supabase running + SERVICE_ROLE_KEY |\n| "
+ "1981": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
},
- {
- "kind": "code",
- "text": "`test:integration:browser`"
+ "1982": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
},
- {
- "kind": "text",
- "text": " | Browser tests using Deno + Puppeteer | Supabase running + Deno installed |\n| "
+ "1983": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.connectionState"
},
- {
- "kind": "code",
- "text": "`test:edge-functions`"
+ "1984": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
},
- {
- "kind": "text",
- "text": " | Edge Functions tests | Supabase running + Deno installed |\n| "
+ "1985": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnected"
},
- {
- "kind": "code",
- "text": "`test:types`"
+ "1986": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
},
- {
- "kind": "text",
- "text": " | TypeScript type checking + JSR validation | None |\n| "
+ "1987": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isConnecting"
},
- {
- "kind": "code",
- "text": "`test:deno`"
+ "1988": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
},
- {
- "kind": "text",
- "text": " | Deno runtime compatibility tests | Supabase running + Deno installed |\n| "
+ "1989": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.isDisconnecting"
},
- {
- "kind": "code",
- "text": "`test:bun`"
+ "1990": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
},
- {
- "kind": "text",
- "text": " | Bun runtime compatibility tests | Supabase running + Bun installed |\n| Expo (see section below) | React Native/Expo tests | Supabase running + dependencies updated |\n| Next.js (see below) | Next.js SSR tests | Supabase running + dependencies updated |\n| "
+ "1991": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.channel"
},
- {
- "kind": "code",
- "text": "`test:node:playwright`"
+ "1992": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "topic"
},
- {
- "kind": "text",
- "text": " | WebSocket browser tests | Supabase running + Playwright |\n\n#### Unit Testing\n\n"
+ "1993": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "params"
},
- {
- "kind": "code",
- "text": "```bash\n# Run all unit tests (Jest)\nnpx nx test supabase-js\n\n# Run only unit tests in test/unit directory\nnpx nx test:unit supabase-js\n\n# Run tests in watch mode during development\nnpx nx test supabase-js --watch\n\n# Run tests with coverage report\nnpx nx test:coverage supabase-js\n```"
+ "1994": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
},
- {
- "kind": "text",
- "text": "\n\n#### Integration Testing\n\n"
+ "1995": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.push"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites: Start Supabase first (see above)\n\n# Run Node.js integration tests\n# IMPORTANT: Requires SUPABASE_SERVICE_ROLE_KEY environment variable\ncd packages/core/supabase-js\nexport SUPABASE_SERVICE_ROLE_KEY=\"$(npx supabase status --output json | jq -r '.SERVICE_ROLE_KEY')\"\ncd ../../..\nnpx nx test:integration supabase-js\n\n# Run browser-based integration tests (requires Deno)\nnpx nx test:integration:browser supabase-js\n```"
+ "1996": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "data"
},
- {
- "kind": "text",
- "text": "\n\n#### Running All Tests\n\n"
+ "1997": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
},
- {
- "kind": "code",
- "text": "```bash\n# This runs type checking, unit tests, and integration tests sequentially\n# NOTE: Will fail if Supabase is not running or dependencies not updated\nnpx nx test:all supabase-js\n```"
+ "1998": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.setAuth"
},
- {
- "kind": "text",
- "text": "\n\n**Common Issues and Solutions:**\n\n| Issue | Solution |\n| -------------------------------------------- | --------------------------------------------------------------- |\n| \"Cannot find module 'https://deno.land/...'\" | Deno tests incorrectly run by Jest - check "
+ "1999": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "token"
},
- {
- "kind": "code",
- "text": "`jest.config.ts`"
+ "2000": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
},
- {
- "kind": "text",
- "text": " |\n| \"Port 54322 already allocated\" | Stop existing Supabase: "
+ "2001": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.sendHeartbeat"
},
- {
- "kind": "code",
- "text": "`npx supabase stop --project-id `"
+ "2002": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
},
- {
- "kind": "text",
- "text": " |\n| \"503 Service Unavailable\" for Edge Functions | Supabase not running - start with "
+ "2003": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.onHeartbeat"
},
- {
- "kind": "code",
- "text": "`npx supabase start`"
+ "2004": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "callback"
},
- {
- "kind": "text",
- "text": " |\n| \"Uncommitted changes\" during type check | Commit changes or add "
+ "2005": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "`--allow-dirty`"
+ "2006": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": " to JSR publish |\n| Integration tests fail with auth errors | Export "
+ "2007": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "code",
- "text": "`SUPABASE_SERVICE_ROLE_KEY`"
+ "2008": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- {
- "kind": "text",
- "text": " (see Integration Testing) |\n\n### Platform-Specific Testing\n\n#### Expo Testing (React Native)\n\n"
+ "2009": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "default.flushSendBuffer"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:expo supabase-js\n\n# Run Expo tests from the Expo test project\ncd packages/core/supabase-js/test/integration/expo\nnpm install\nnpm test\ncd ../../..\n```"
+ "2011": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeClientOptions"
},
- {
- "kind": "text",
- "text": "\n\n#### Next.js Testing (SSR)\n\n"
+ "2012": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Update test dependencies and pack current build\nnpx nx update:test-deps:next supabase-js\n\n# 3. Install Playwright browsers and dependencies\nnpx playwright install --with-deps\n\n# Run Next.js tests from the Next test project\ncd packages/core/supabase-js/test/integration/next\nnpm install --legacy-peer-deps\nnpm run test\ncd ../../..\n```"
+ "2013": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.transport"
},
- {
- "kind": "text",
- "text": "\n\n#### Deno Testing\n\n"
+ "2014": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.timeout"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Deno must be installed (https://deno.land)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:deno supabase-js\n\n# Run Deno tests\nnpx nx test:deno supabase-js\n```"
+ "2015": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatIntervalMs"
},
- {
- "kind": "text",
- "text": "\n\n### Edge Functions Testing\n\nThe project includes Edge Functions integration tests that require a local Supabase instance to be running.\n\n"
+ "2016": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.heartbeatCallback"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Ensure Docker is installed and running\n# 2. Navigate to the supabase-js package directory\ncd packages/core/supabase-js\n\n# 3. Start Supabase locally (this will download and start all required containers)\nnpx supabase start\n\n# Wait for the output showing all services are ready, including:\n# - API URL: http://127.0.0.1:54321\n# - Database URL: postgresql://postgres:postgres@127.0.0.1:54322/postgres\n# - Edge Runtime container\n\n# 4. Run the Edge Functions tests from the monorepo root\ncd ../../../ # Back to monorepo root\nnpx nx test:edge-functions supabase-js\n```"
+ "2017": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n**Important Notes:**\n\n- The Edge Functions tests will fail with 503 errors if Supabase is not running\n- If you encounter port conflicts (e.g., \"port 54322 already allocated\"), stop any existing Supabase instances:\n\n "
+ "2018": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n npx supabase stop --project-id \n # Or stop all Docker containers if unsure:\n docker ps | grep supabase # List all Supabase containers\n ```"
+ "2019": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "status"
},
- {
- "kind": "text",
- "text": "\n\n- The tests use the default local development credentials (anon key)\n- Edge Functions are automatically served when "
+ "2020": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logger"
},
- {
- "kind": "code",
- "text": "`supabase start`"
+ "2021": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.encode"
+ },
+ "2022": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.decode"
},
- {
- "kind": "text",
- "text": " is run\n\n#### Bun Testing\n\n"
+ "2023": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.reconnectAfterMs"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Bun must be installed (https://bun.sh)\n# 2. Supabase must be running (see Prerequisites)\n# 3. Update test dependencies:\nnpx nx update:test-deps:bun supabase-js\n\n# Run Bun tests\nnpx nx test:bun supabase-js\n```"
+ "2024": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.headers"
},
- {
- "kind": "text",
- "text": "\n\n#### WebSocket Browser Testing\n\n"
+ "2025": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Prerequisites:\n# 1. Supabase must be running (see Prerequisites)\n# 2. Build the UMD bundle first:\nnpx nx build supabase-js\n\n# Run WebSocket browser tests with Playwright\ncd packages/core/supabase-js/test/integration/node-browser\nnpm install\ncp ../../../dist/umd/supabase.js .\nnpm run test\ncd ../../..\n```"
+ "2026": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "text",
- "text": "\n\n#### CI/CD Testing\n\nWhen running on CI, the tests automatically use the latest dependencies from the root project. The CI pipeline:\n\n1. Builds the main project with current dependencies\n2. Creates a package archive ("
+ "2028": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.params"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2029": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": ") with the latest versions\n3. Uses this archive in Expo, Next.js, Deno, and Bun tests to ensure consistency\n\n### Updating Test Dependencies\n\nThe platform-specific tests (Expo, Next.js, Deno, Bun) use a packaged version of supabase-js rather than directly importing from source. This ensures they test the actual built package as it would be consumed by users.\n\n#### How It Works\n\n1. **Build** the current supabase-js package\n2. **Pack** it into a "
+ "2030": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.__index"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2032": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.log_level"
},
- {
- "kind": "text",
- "text": " file (like "
+ "2033": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.logLevel"
},
- {
- "kind": "code",
- "text": "`npm pack`"
+ "2034": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.fetch"
},
- {
- "kind": "text",
- "text": " does)\n3. **Copy** the "
+ "2035": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.worker"
},
- {
- "kind": "code",
- "text": "`.tgz`"
+ "2036": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.workerUrl"
},
- {
- "kind": "text",
- "text": " to the test directory\n4. **Install** it in the test project\n\nThis mimics how real users would install and use the package.\n\n#### Update Scripts\n\n"
+ "2037": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.accessToken"
},
- {
- "kind": "code",
- "text": "```bash\n# Update ALL test environment dependencies at once\n# This builds, packs, and installs in all test directories\nnpx nx update:test-deps supabase-js\n\n# Or update specific test environments:\nnpx nx update:test-deps:expo supabase-js # Expo/React Native only\nnpx nx update:test-deps:next supabase-js # Next.js only\nnpx nx update:test-deps:deno supabase-js # Deno only\nnpx nx update:test-deps:bun supabase-js # Bun only\n```"
+ "2038": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "text",
- "text": "\n\n**When to Update:**\n\n- After making changes to the source code\n- Before running platform-specific tests locally\n- When debugging test failures that might be due to stale dependencies\n\n**Note:** CI automatically handles this, so manual updates are only needed for local development.\n\n### Test Coverage\n\n#### Viewing Coverage Reports\n\n"
+ "2039": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "code",
- "text": "```bash\n# Generate coverage report\nnpx nx test:coverage supabase-js\n\n# Serve coverage report locally (opens interactive HTML report)\nnpx nx serve:coverage supabase-js\n# This starts a local server at http://localhost:3000 with the coverage report\n```"
+ "2040": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeMessage"
},
- {
- "kind": "text",
- "text": "\n\nThe coverage report shows:\n\n- Line coverage\n- Branch coverage\n- Function coverage\n- Uncovered lines with highlights\n\nCoverage results are also automatically uploaded to Coveralls in CI for tracking over time.\n\n### Contributing\n\nWe welcome contributions! Please see our [Contributing Guide]("
+ "2041": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type"
},
- {
- "kind": "relative-link",
- "text": "../../../CONTRIBUTING.md",
- "target": 2
+ "2042": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.topic"
},
- {
- "kind": "text",
- "text": ") for details on how to get started.\n\nFor major changes or if you're unsure about something, please open an issue first to discuss your proposed changes.\n\n## Badges\n\n[](https://coveralls.io/github/supabase/supabase-js?branch=master)"
- }
- ],
- "symbolIdMap": {
- "0": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": ""
+ "2043": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.event"
},
- "1": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "2044": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.payload"
},
- "2": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "createClient"
+ "2045": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.ref"
},
- "3": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "Database"
+ "2046": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "__type.join_ref"
},
- "4": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaNameOrClientOptions"
+ "2047": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesFilter"
},
- "5": {
- "sourceFileName": "src/index.ts",
+ "2048": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "6": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2049": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.event"
},
- "7": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "SchemaName"
+ "2050": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.schema"
},
- "8": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseUrl"
+ "2051": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.table"
},
- "9": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "supabaseKey"
+ "2052": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.filter"
},
- "10": {
- "sourceFileName": "src/index.ts",
- "qualifiedName": "options"
+ "2053": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "11": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "2054": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresChangesPayload"
},
- "12": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.__constructor"
+ "2055": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "13": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default"
+ "2056": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "14": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "2057": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "15": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "2059": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresInsertPayload"
},
- "16": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2060": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "17": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
- },
- "18": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2061": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "19": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2062": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
},
- "20": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2063": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
},
- "21": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2064": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "22": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2065": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "23": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2066": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "24": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2067": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "25": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2069": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresUpdatePayload"
+ },
+ "2070": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "26": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2071": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "27": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2072": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
+ },
+ "2073": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
+ },
+ "2074": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
+ },
+ "2075": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "28": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2076": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "29": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2078": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "RealtimePostgresDeletePayload"
+ },
+ "2079": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
"qualifiedName": "__type"
},
- "30": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2080": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.eventType"
},
- "31": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseUrl"
+ "2081": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.new"
},
- "32": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "supabaseKey"
+ "2082": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "33": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2083": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.old"
},
- "34": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.auth"
+ "2084": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "T"
},
- "35": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtime"
+ "2085": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type"
},
- "36": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storage"
+ "2086": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "__type.__index"
},
- "37": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.realtimeUrl"
+ "2088": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceJoinPayload"
},
- "38": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.authUrl"
+ "2089": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "39": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageUrl"
+ "2090": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
},
- "40": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functionsUrl"
+ "2091": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
},
- "41": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rest"
+ "2092": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
},
- "42": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.storageKey"
+ "2093": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.newPresences"
},
- "43": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.fetch"
+ "2094": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "44": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2095": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "45": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "fetch"
+ "2096": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "46": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "input"
+ "2098": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceLeavePayload"
},
- "47": {
- "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
- "qualifiedName": "init"
+ "2099": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "48": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "fetch"
+ "2100": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.event"
},
- "49": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "input"
+ "2101": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.key"
},
- "50": {
- "sourceFileName": "../../../node_modules/@types/node/web-globals/fetch.d.ts",
- "qualifiedName": "init"
+ "2102": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.currentPresences"
},
- "51": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.changedAccessToken"
+ "2103": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.leftPresences"
},
- "52": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.accessToken"
+ "2104": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "53": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2105": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "54": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2106": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
+ },
+ "2108": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "RealtimePresenceState"
+ },
+ "2109": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
"qualifiedName": "__type"
},
- "55": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.headers"
+ "2110": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "56": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseUrl"
+ "2112": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "T"
},
- "57": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.supabaseKey"
+ "2113": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "58": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2114": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type.__index"
},
- "59": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.functions"
+ "2116": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "__type"
},
- "60": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2117": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "RealtimeRemoveChannelResponse"
},
- "61": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2118": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES"
},
- "62": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "TableName"
+ "2119": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.BROADCAST"
+ },
+ "2120": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.PRESENCE"
+ },
+ "2121": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.POSTGRES_CHANGES"
},
- "63": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Table"
+ "2122": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_LISTEN_TYPES.SYSTEM"
},
- "64": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2123": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT"
},
- "65": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.from"
+ "2124": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.ALL"
},
- "66": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "ViewName"
+ "2125": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.INSERT"
},
- "67": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "View"
+ "2126": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.UPDATE"
},
- "68": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "relation"
+ "2127": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_POSTGRES_CHANGES_LISTEN_EVENT.DELETE"
},
- "69": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2128": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS"
},
- "70": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.schema"
+ "2129": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.SYNC"
},
- "71": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "DynamicSchema"
+ "2130": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.JOIN"
},
- "72": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "schema"
+ "2131": {
+ "sourceFileName": "../realtime-js/src/RealtimePresence.ts",
+ "qualifiedName": "REALTIME_PRESENCE_LISTEN_EVENTS.LEAVE"
},
- "73": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2132": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES"
},
- "74": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.rpc"
+ "2133": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.SUBSCRIBED"
},
- "75": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FnName"
+ "2134": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.TIMED_OUT"
},
- "76": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "Args"
+ "2135": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CLOSED"
},
- "77": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "FilterBuilder"
+ "2136": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_SUBSCRIBE_STATES.CHANNEL_ERROR"
},
- "78": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "fn"
+ "2137": {
+ "sourceFileName": "../realtime-js/src/RealtimeChannel.ts",
+ "qualifiedName": "REALTIME_CHANNEL_STATES"
},
- "79": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "args"
+ "2138": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory"
},
- "80": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "options"
+ "2140": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
},
- "81": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2141": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.getWebSocketConstructor"
+ },
+ "2142": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
"qualifiedName": "__type"
},
- "82": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.head"
+ "2143": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "__type"
},
- "83": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.get"
+ "2144": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "url"
},
- "84": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.count"
+ "2145": {
+ "sourceFileName": "../../../node_modules/typescript/lib/lib.dom.d.ts",
+ "qualifiedName": "protocols"
},
- "85": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2146": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "86": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.channel"
+ "2147": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.createWebSocket"
},
- "87": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "name"
+ "2148": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "url"
},
- "88": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "opts"
+ "2149": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "protocols"
},
- "89": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2150": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "90": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.getChannels"
+ "2151": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketFactory.isWebSocketSupported"
},
- "91": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2154": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike"
},
- "92": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeChannel"
+ "2155": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CONNECTING"
},
- "93": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "channel"
+ "2156": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.OPEN"
},
- "94": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2157": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSING"
},
- "95": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.removeAllChannels"
+ "2158": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.CLOSED"
},
- "121": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Database"
+ "2159": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.readyState"
},
- "122": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaNameOrClientOptions"
+ "2160": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.url"
},
- "123": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2161": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.protocol"
},
- "124": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2162": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "125": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.SchemaName"
+ "2163": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.close"
},
- "126": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.Schema"
+ "2164": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "code"
},
- "127": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "default.ClientOptions"
+ "2165": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "reason"
},
- "128": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2166": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "129": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2167": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.send"
},
- "130": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2168": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "data"
},
- "131": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.__InternalSupabase"
+ "2169": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onopen"
},
- "132": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2170": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "133": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
- },
- "134": {
- "sourceFileName": "src/SupabaseClient.ts",
+ "2171": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "135": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2172": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "136": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type"
+ "2173": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "137": {
- "sourceFileName": "src/SupabaseClient.ts",
- "qualifiedName": "__type.PostgrestVersion"
+ "2174": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onmessage"
},
- "138": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SupabaseClientOptions"
+ "2175": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "139": {
- "sourceFileName": "src/lib/types.ts",
+ "2176": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "140": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.db"
+ "2177": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "141": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2178": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "142": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.schema"
+ "2179": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onclose"
},
- "143": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.auth"
+ "2180": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "144": {
- "sourceFileName": "src/lib/types.ts",
+ "2181": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "145": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.autoRefreshToken"
+ "2182": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "146": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storageKey"
+ "2183": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "147": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.persistSession"
+ "2184": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.onerror"
},
- "148": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.detectSessionInUrl"
+ "2185": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "149": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2186": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "150": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.userStorage"
+ "2187": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "this"
},
- "151": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.flowType"
+ "2188": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "ev"
},
- "152": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.debug"
+ "2189": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "153": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.lock"
+ "2190": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.addEventListener"
},
- "154": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.realtime"
+ "2191": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "155": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.storage"
+ "2192": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "156": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.global"
+ "2193": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "157": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2194": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.removeEventListener"
},
- "158": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.fetch"
+ "2195": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "type"
},
- "159": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.headers"
+ "2196": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "listener"
},
- "160": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.accessToken"
+ "2197": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.binaryType"
},
- "161": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2198": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.bufferedAmount"
},
- "162": {
- "sourceFileName": "src/lib/types.ts",
+ "2199": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.extensions"
+ },
+ "2200": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "WebSocketLike.dispatchEvent"
+ },
+ "2201": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
"qualifiedName": "__type"
},
- "163": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "SchemaName"
+ "2202": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "__type"
},
- "164": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryResult"
+ "2203": {
+ "sourceFileName": "../realtime-js/src/lib/websocket-factory.ts",
+ "qualifiedName": "event"
},
- "165": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2204": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "166": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryData"
+ "2205": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "167": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type"
+ "2206": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor"
},
- "168": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "__type.data"
+ "2207": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "address"
},
- "169": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "T"
+ "2208": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "subprotocols"
},
- "170": {
- "sourceFileName": "src/lib/types.ts",
- "qualifiedName": "QueryError"
+ "2209": {
+ "sourceFileName": "../realtime-js/src/RealtimeClient.ts",
+ "qualifiedName": "WebSocketLikeConstructor.__index"
}
},
"files": {
"entries": {
"1": "src/index.ts",
- "2": "../../../CONTRIBUTING.md"
+ "2": "TESTING.md",
+ "3": "../../../CONTRIBUTING.md"
},
"reflections": {
"1": 0
diff --git a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
index 9567fa896ae60..d0f2bb9489296 100644
--- a/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
+++ b/apps/docs/spec/transforms/api_v1_openapi_deparsed.json
@@ -175,7 +175,14 @@
}
],
"summary": "Get database branch config",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
},
"patch": {
"description": "Updates the configuration of the specified database branch",
@@ -345,7 +352,14 @@
}
],
"summary": "Update database branch config",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
},
"delete": {
"description": "Deletes the specified database branch",
@@ -402,7 +416,14 @@
}
],
"summary": "Delete a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/push": {
@@ -479,7 +500,14 @@
}
],
"summary": "Pushes a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/merge": {
@@ -556,7 +584,14 @@
}
],
"summary": "Merges a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/reset": {
@@ -633,7 +668,14 @@
}
],
"summary": "Resets a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/branches/{branch_id_or_ref}/diff": {
@@ -693,7 +735,14 @@
}
],
"summary": "[Beta] Diffs a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects": {
@@ -797,7 +846,14 @@
}
],
"summary": "List all projects",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
},
"post": {
"operationId": "v1-create-a-project",
@@ -1032,7 +1088,14 @@
}
],
"summary": "Create a project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/available-regions": {
@@ -1058,6 +1121,38 @@
"type": "string",
"enum": ["NA", "SA", "EU", "AF", "AS", "OC", "AN"]
}
+ },
+ {
+ "name": "desired_instance_size",
+ "required": false,
+ "in": "query",
+ "description": "Desired instance size",
+ "schema": {
+ "example": "nano",
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ }
}
],
"responses": {
@@ -1225,7 +1320,14 @@
}
],
"summary": "List all organizations",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: organizations:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "organizations:read"
},
"post": {
"operationId": "v1-create-an-organization",
@@ -1769,7 +1871,14 @@
}
],
"summary": "Lists SQL snippets for the logged in user",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/snippets/{id}": {
@@ -1903,7 +2012,14 @@
}
],
"summary": "Gets a specific SQL snippet",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/actions": {
@@ -2048,7 +2164,14 @@
}
],
"summary": "List all action runs",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
},
"head": {
"description": "Returns the total number of action runs of the specified project.",
@@ -2100,7 +2223,14 @@
}
],
"summary": "Count the number of action runs",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/actions/{run_id}": {
@@ -2233,7 +2363,14 @@
}
],
"summary": "Get the status of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/actions/{run_id}/status": {
@@ -2396,7 +2533,14 @@
}
],
"summary": "Update the status of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects/{ref}/actions/{run_id}/logs": {
@@ -2456,7 +2600,14 @@
}
],
"summary": "Get the logs of an action run",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/api-keys": {
@@ -2561,7 +2712,14 @@
}
],
"summary": "Get project api keys",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
},
"post": {
"operationId": "v1-create-project-api-key",
@@ -2693,7 +2851,14 @@
}
],
"summary": "Creates a new API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/api-keys/legacy": {
@@ -2746,7 +2911,14 @@
}
],
"summary": "Check whether JWT based legacy (anon, service_role) API keys are enabled. This API endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
},
"put": {
"operationId": "v1-update-project-legacy-api-keys",
@@ -2806,7 +2978,14 @@
}
],
"summary": "Disable or re-enable JWT based legacy (anon, service_role) API keys. This API endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/api-keys/{id}": {
@@ -2944,7 +3123,14 @@
}
],
"summary": "Updates an API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-project-api-key",
@@ -3053,7 +3239,14 @@
}
],
"summary": "Get API key",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
},
"delete": {
"operationId": "v1-delete-project-api-key",
@@ -3179,7 +3372,14 @@
}
],
"summary": "Deletes an API key for the project",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/branches": {
@@ -3308,7 +3508,14 @@
}
],
"summary": "List all database branches",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
},
"post": {
"description": "Creates a database branch from the specified project.",
@@ -3510,7 +3717,14 @@
}
],
"summary": "Create a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
},
"delete": {
"description": "Disables preview branching for the specified project",
@@ -3552,7 +3766,14 @@
}
],
"summary": "Disables preview branching",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:write"
}
},
"/v1/projects/{ref}/branches/{name}": {
@@ -3686,7 +3907,14 @@
}
],
"summary": "Get a database branch",
- "tags": ["Environments"]
+ "tags": ["Environments"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: environment:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "environment:read"
}
},
"/v1/projects/{ref}/custom-hostname": {
@@ -3855,7 +4083,14 @@
}
],
"summary": "[Beta] Gets project's custom hostname config",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:read"
},
"delete": {
"operationId": "v1-Delete hostname config",
@@ -3896,7 +4131,14 @@
}
],
"summary": "[Beta] Deletes a project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/initialize": {
@@ -4082,7 +4324,14 @@
}
],
"summary": "[Beta] Updates project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/reverify": {
@@ -4251,7 +4500,14 @@
}
],
"summary": "[Beta] Attempts to verify the DNS configuration for project's custom hostname configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/custom-hostname/activate": {
@@ -4420,7 +4676,14 @@
}
],
"summary": "[Beta] Activates a custom hostname for a project.",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/network-bans/retrieve": {
@@ -4479,7 +4742,14 @@
}
],
"summary": "[Beta] Gets project's network bans",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/network-bans/retrieve/enriched": {
@@ -4550,7 +4820,14 @@
}
],
"summary": "[Beta] Gets project's network bans with additional information about which databases they affect",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/network-bans": {
@@ -4621,7 +4898,14 @@
}
],
"summary": "[Beta] Remove network bans.",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/network-restrictions": {
@@ -4726,7 +5010,14 @@
}
],
"summary": "[Beta] Gets project's network restrictions",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
},
"patch": {
"operationId": "v1-patch-network-restrictions",
@@ -4883,7 +5174,14 @@
}
],
"summary": "[Alpha] Updates project's network restrictions by adding or removing CIDRs",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/network-restrictions/apply": {
@@ -5012,7 +5310,14 @@
}
],
"summary": "[Beta] Updates project's network restrictions",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/pgsodium": {
@@ -5068,7 +5373,14 @@
}
],
"summary": "[Beta] Gets project's pgsodium config",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
},
"put": {
"operationId": "v1-update-pgsodium-config",
@@ -5138,7 +5450,14 @@
}
],
"summary": "[Beta] Updates project's pgsodium config. Updating the root_key can cause all data encrypted with the older key to become inaccessible.",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/postgrest": {
@@ -5208,7 +5527,14 @@
}
],
"summary": "Gets project's postgrest config",
- "tags": ["Rest"]
+ "tags": ["Rest"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: rest:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "rest:read"
},
"patch": {
"operationId": "v1-update-postgrest-service-config",
@@ -5301,7 +5627,14 @@
}
],
"summary": "Updates project's postgrest config",
- "tags": ["Rest"]
+ "tags": ["Rest"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: rest:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "rest:write"
}
},
"/v1/projects/{ref}": {
@@ -5426,7 +5759,14 @@
}
],
"summary": "Gets a specific project that belongs to the authenticated user",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
},
"delete": {
"operationId": "v1-delete-a-project",
@@ -5483,7 +5823,14 @@
}
],
"summary": "Deletes the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/secrets": {
@@ -5549,7 +5896,14 @@
}
],
"summary": "List all secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
},
"post": {
"description": "Creates multiple secrets and adds them to the specified project.",
@@ -5618,7 +5972,14 @@
}
],
"summary": "Bulk create secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
},
"delete": {
"description": "Deletes all secrets with the given names from the specified project",
@@ -5673,7 +6034,14 @@
}
],
"summary": "Bulk delete secrets",
- "tags": ["Secrets"]
+ "tags": ["Secrets"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/ssl-enforcement": {
@@ -5738,7 +6106,14 @@
}
],
"summary": "[Beta] Get project's SSL enforcement configuration.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"put": {
"operationId": "v1-update-ssl-enforcement-config",
@@ -5823,7 +6198,14 @@
}
],
"summary": "[Beta] Update project's SSL enforcement configuration.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/types/typescript": {
@@ -5889,7 +6271,14 @@
}
],
"summary": "Generate TypeScript types",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/vanity-subdomain": {
@@ -5950,7 +6339,14 @@
}
],
"summary": "[Beta] Gets current vanity subdomain config",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:read"
},
"delete": {
"operationId": "v1-deactivate-vanity-subdomain-config",
@@ -5991,7 +6387,14 @@
}
],
"summary": "[Beta] Deletes a project's vanity subdomain configuration",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/vanity-subdomain/check-availability": {
@@ -6063,7 +6466,14 @@
}
],
"summary": "[Beta] Checks vanity subdomain availability",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/vanity-subdomain/activate": {
@@ -6135,7 +6545,14 @@
}
],
"summary": "[Beta] Activates a vanity subdomain for a project.",
- "tags": ["Domains"]
+ "tags": ["Domains"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: domains:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "domains:write"
}
},
"/v1/projects/{ref}/upgrade": {
@@ -6211,7 +6628,14 @@
}
],
"summary": "[Beta] Upgrades the project's Postgres version",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/upgrade/eligibility": {
@@ -6335,7 +6759,14 @@
}
],
"summary": "[Beta] Returns the project's eligibility for upgrades",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/upgrade/status": {
@@ -6445,7 +6876,14 @@
}
],
"summary": "[Beta] Gets the latest status of the project's upgrade",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/readonly": {
@@ -6507,7 +6945,14 @@
}
],
"summary": "Returns project's readonly mode status",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/readonly/temporary-disable": {
@@ -6550,7 +6995,14 @@
}
],
"summary": "Disables project's readonly mode for the next 15 minutes",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/read-replicas/setup": {
@@ -6803,6 +7255,15 @@
}
},
"required": ["healthy", "db_connected", "connected_cluster"]
+ },
+ {
+ "type": "object",
+ "properties": {
+ "db_schema": {
+ "type": "string"
+ }
+ },
+ "required": ["db_schema"]
}
]
},
@@ -6835,7 +7296,14 @@
}
],
"summary": "Gets project's service health status",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys/legacy": {
@@ -6909,7 +7377,14 @@
}
],
"summary": "Set up the project's existing JWT secret as an in_use JWT signing key. This endpoint will be removed in the future always check for HTTP 404 Not Found.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-legacy-signing-key",
@@ -6981,7 +7456,14 @@
}
],
"summary": "Get the signing key information for the JWT secret imported as signing key for this project. This endpoint will be removed in the future, check for HTTP 404 Not Found.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys": {
@@ -7280,7 +7762,14 @@
}
],
"summary": "Create a new signing key for the project in standby status",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
},
"get": {
"operationId": "v1-get-project-signing-keys",
@@ -7362,7 +7851,14 @@
}
],
"summary": "List all signing keys for the project",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:read"
}
},
"/v1/projects/{ref}/config/auth/signing-keys/{id}": {
@@ -7526,7 +8022,14 @@
}
],
"summary": "Remove a signing key from a project. Only possible if the key has been in revoked status for a while.",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
},
"patch": {
"operationId": "v1-update-project-signing-key",
@@ -7625,7 +8128,14 @@
}
],
"summary": "Update a signing key, mainly its status",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: secrets:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "secrets:write"
}
},
"/v1/projects/{ref}/config/storage": {
@@ -7949,6 +8459,14 @@
},
"work_mem": {
"type": "string"
+ },
+ "checkpoint_timeout": {
+ "type": "integer",
+ "minimum": 30,
+ "maximum": 86400
+ },
+ "hot_standby_feedback": {
+ "type": "boolean"
}
}
}
@@ -7974,7 +8492,14 @@
}
],
"summary": "Gets project's Postgres config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"put": {
"operationId": "v1-update-postgres-config",
@@ -8081,6 +8606,14 @@
"work_mem": {
"type": "string"
},
+ "checkpoint_timeout": {
+ "type": "integer",
+ "minimum": 30,
+ "maximum": 86400
+ },
+ "hot_standby_feedback": {
+ "type": "boolean"
+ },
"restart_database": {
"type": "boolean"
}
@@ -8179,6 +8712,14 @@
},
"work_mem": {
"type": "string"
+ },
+ "checkpoint_timeout": {
+ "type": "integer",
+ "minimum": 30,
+ "maximum": 86400
+ },
+ "hot_standby_feedback": {
+ "type": "boolean"
}
}
}
@@ -8204,7 +8745,14 @@
}
],
"summary": "Updates project's Postgres config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/config/database/pgbouncer": {
@@ -8279,7 +8827,14 @@
}
},
"summary": "Get project's pgbouncer config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/config/database/pooler": {
@@ -8389,7 +8944,14 @@
}
],
"summary": "Gets project's supavisor config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"patch": {
"operationId": "v1-update-pooler-config",
@@ -8470,7 +9032,14 @@
}
],
"summary": "Updates project's supavisor config",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/config/auth": {
@@ -9641,7 +10210,14 @@
}
],
"summary": "Gets project's auth config",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:read"
},
"patch": {
"operationId": "v1-update-auth-service-config",
@@ -11754,7 +12330,14 @@
}
],
"summary": "Updates a project's auth config",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
}
},
"/v1/projects/{ref}/config/auth/third-party-auth": {
@@ -11854,7 +12437,14 @@
}
],
"summary": "Creates a new third-party auth integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-list-project-tpa-integrations",
@@ -11936,7 +12526,14 @@
}
],
"summary": "Lists all third-party auth integrations",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/config/auth/third-party-auth/{tpa_id}": {
@@ -12026,7 +12623,14 @@
}
],
"summary": "Removes a third-party auth integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-get-project-tpa-integration",
@@ -12114,7 +12718,14 @@
}
],
"summary": "Get a third-party integration",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/pause": {
@@ -12154,7 +12765,14 @@
}
],
"summary": "Pauses the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/restore": {
@@ -12224,7 +12842,14 @@
}
],
"summary": "Lists available restore versions for the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
},
"post": {
"operationId": "v1-restore-a-project",
@@ -12262,7 +12887,14 @@
}
],
"summary": "Restores the given project",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/restore/cancel": {
@@ -12302,7 +12934,14 @@
}
],
"summary": "Cancels the given project restoration",
- "tags": ["Projects"]
+ "tags": ["Projects"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:write"
}
},
"/v1/projects/{ref}/billing/addons": {
@@ -13101,7 +13740,14 @@
}
],
"summary": "Gets project performance advisors.",
- "tags": ["Advisors"]
+ "tags": ["Advisors"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/advisors/security": {
@@ -13279,7 +13925,14 @@
}
],
"summary": "Gets project security advisors.",
- "tags": ["Advisors"]
+ "tags": ["Advisors"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/analytics/endpoints/logs.all": {
@@ -13411,7 +14064,14 @@
}
],
"summary": "Gets project's logs",
- "tags": ["Analytics"]
+ "tags": ["Analytics"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: analytics:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "analytics:read"
}
},
"/v1/projects/{ref}/analytics/endpoints/usage.api-counts": {
@@ -13878,7 +14538,14 @@
}
],
"summary": "[Beta] Create a login role for CLI with temporary password",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
},
"delete": {
"operationId": "v1-delete-login-roles",
@@ -13933,7 +14600,14 @@
}
],
"summary": "[Beta] Delete existing login roles used by CLI",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/migrations": {
@@ -13997,7 +14671,14 @@
}
],
"summary": "[Beta] List applied migration versions",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"post": {
"description": "Only available to selected partner OAuth apps",
@@ -14068,7 +14749,14 @@
}
],
"summary": "[Beta] Apply a database migration",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
},
"put": {
"description": "Only available to selected partner OAuth apps",
@@ -14139,7 +14827,14 @@
}
],
"summary": "[Beta] Upsert a database migration without applying",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/query": {
@@ -14170,6 +14865,10 @@
"type": "string",
"minLength": 1
},
+ "parameters": {
+ "type": "array",
+ "items": {}
+ },
"read_only": {
"type": "boolean"
}
@@ -14202,7 +14901,14 @@
}
],
"summary": "[Beta] Run sql query",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/webhooks/enable": {
@@ -14245,7 +14951,14 @@
}
],
"summary": "[Beta] Enables Database Webhooks on the project",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/context": {
@@ -14323,7 +15036,14 @@
}
],
"summary": "Gets database metadata for the given project.",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: projects:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "projects:read"
}
},
"/v1/projects/{ref}/database/jit": {
@@ -14426,7 +15146,14 @@
}
],
"summary": "Get user-id to role mappings for JIT access",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"post": {
"description": "Authorizes the request to assume a role in the project database",
@@ -14545,7 +15272,14 @@
}
],
"summary": "Authorize user-id to role mappings for JIT access",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
},
"put": {
"description": "Modifies the roles that can be assumed and for how long",
@@ -14978,7 +15712,14 @@
}
],
"summary": "List all functions",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:read"
},
"post": {
"deprecated": true,
@@ -15172,7 +15913,14 @@
}
],
"summary": "Create a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:write"
},
"put": {
"description": "Bulk update functions. It will create a new function or replace existing. The operation is idempotent. NOTE: You will need to manually bump the version.",
@@ -15335,7 +16083,14 @@
}
],
"summary": "Bulk update functions",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/deploy": {
@@ -15493,7 +16248,14 @@
}
],
"summary": "Deploy a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/{function_slug}": {
@@ -15604,7 +16366,14 @@
}
],
"summary": "Retrieve a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:read"
},
"patch": {
"description": "Updates a function with the specified slug and project.",
@@ -15799,7 +16568,14 @@
}
],
"summary": "Update a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:write"
},
"delete": {
"description": "Deletes a function with the specified slug from the specified project.",
@@ -15851,7 +16627,14 @@
}
],
"summary": "Delete a function",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:write"
}
},
"/v1/projects/{ref}/functions/{function_slug}/body": {
@@ -15913,7 +16696,14 @@
}
],
"summary": "Retrieve a function body",
- "tags": ["Edge Functions"]
+ "tags": ["Edge Functions"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: edge_functions:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "edge_functions:read"
}
},
"/v1/projects/{ref}/storage/buckets": {
@@ -15987,7 +16777,14 @@
}
],
"summary": "Lists all buckets",
- "tags": ["Storage"]
+ "tags": ["Storage"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: storage:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "storage:read"
}
},
"/v1/projects/{ref}/config/auth/sso/providers": {
@@ -16222,7 +17019,14 @@
}
],
"summary": "Creates a new SSO provider",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
},
"get": {
"operationId": "v1-list-all-sso-provider",
@@ -16382,7 +17186,14 @@
}
],
"summary": "Lists all SSO providers",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:read"
}
},
"/v1/projects/{ref}/config/auth/sso/providers/{provider_id}": {
@@ -16544,7 +17355,14 @@
}
],
"summary": "Gets a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:read"
},
"put": {
"operationId": "v1-update-a-sso-provider",
@@ -16780,7 +17598,14 @@
}
],
"summary": "Updates a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
},
"delete": {
"operationId": "v1-delete-a-sso-provider",
@@ -16940,7 +17765,14 @@
}
],
"summary": "Removes a SSO provider by its UUID",
- "tags": ["Auth"]
+ "tags": ["Auth"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: auth:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "auth:write"
}
},
"/v1/projects/{ref}/database/backups": {
@@ -17045,7 +17877,14 @@
}
],
"summary": "Lists all backups",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/database/backups/restore-pitr": {
@@ -17103,7 +17942,14 @@
}
],
"summary": "Restores a PITR backup for a database",
- "tags": ["Database"]
+ "tags": ["Database"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "database:write"
}
},
"/v1/projects/{ref}/database/backups/restore-point": {
@@ -17153,7 +17999,7 @@
},
"status": {
"type": "string",
- "enum": ["AVAILABLE", "PENDING", "REMOVED"]
+ "enum": ["AVAILABLE", "PENDING", "REMOVED", "FAILED"]
}
},
"required": ["name", "status"]
@@ -17178,7 +18024,14 @@
],
"summary": "Initiates a creation of a restore point for a database",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-internal": true,
+ "x-oauth-scope": "database:write"
},
"get": {
"operationId": "v1-get-restore-point",
@@ -17218,7 +18071,7 @@
},
"status": {
"type": "string",
- "enum": ["AVAILABLE", "PENDING", "REMOVED"]
+ "enum": ["AVAILABLE", "PENDING", "REMOVED", "FAILED"]
}
},
"required": ["name", "status"]
@@ -17246,7 +18099,14 @@
],
"summary": "Get restore points for project",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:read",
+ "position": "after"
+ }
+ ],
+ "x-internal": true,
+ "x-oauth-scope": "database:read"
}
},
"/v1/projects/{ref}/database/backups/undo": {
@@ -17304,7 +18164,14 @@
],
"summary": "Initiates an undo to a given restore point",
"tags": ["Database"],
- "x-internal": true
+ "x-badges": [
+ {
+ "name": "OAuth scope: database:write",
+ "position": "after"
+ }
+ ],
+ "x-internal": true,
+ "x-oauth-scope": "database:write"
}
},
"/v1/organizations/{slug}/members": {
@@ -17370,7 +18237,14 @@
}
],
"summary": "List members of an organization",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: organizations:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "organizations:read"
}
},
"/v1/organizations/{slug}": {
@@ -17446,7 +18320,14 @@
}
],
"summary": "Gets information about the organization",
- "tags": ["Organizations"]
+ "tags": ["Organizations"],
+ "x-badges": [
+ {
+ "name": "OAuth scope: organizations:read",
+ "position": "after"
+ }
+ ],
+ "x-oauth-scope": "organizations:read"
}
},
"/v1/organizations/{slug}/project-claim/{token}": {
@@ -17558,95 +18439,349 @@
"required": ["name", "limit"]
}
},
- "source_subscription_plan": {
- "type": "string",
- "enum": ["free", "pro", "team", "enterprise"]
+ "source_subscription_plan": {
+ "type": "string",
+ "enum": ["free", "pro", "team", "enterprise"]
+ },
+ "target_subscription_plan": {
+ "type": "string",
+ "enum": ["free", "pro", "team", "enterprise"],
+ "nullable": true
+ }
+ },
+ "required": [
+ "valid",
+ "warnings",
+ "errors",
+ "info",
+ "members_exceeding_free_project_limit",
+ "source_subscription_plan",
+ "target_subscription_plan"
+ ]
+ },
+ "expires_at": {
+ "type": "string"
+ },
+ "created_at": {
+ "type": "string"
+ },
+ "created_by": {
+ "type": "string",
+ "format": "uuid"
+ }
+ },
+ "required": ["project", "preview", "expires_at", "created_at", "created_by"]
+ }
+ }
+ }
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "403": {
+ "description": "Forbidden action"
+ },
+ "429": {
+ "description": "Rate limit exceeded"
+ }
+ },
+ "security": [
+ {
+ "bearer": []
+ }
+ ],
+ "summary": "Gets project details for the specified organization and claim token",
+ "tags": ["Organizations"],
+ "x-internal": true
+ },
+ "post": {
+ "operationId": "v1-claim-project-for-organization",
+ "parameters": [
+ {
+ "name": "slug",
+ "required": true,
+ "in": "path",
+ "description": "Organization slug",
+ "schema": {
+ "pattern": "^[\\w-]+$",
+ "type": "string"
+ }
+ },
+ {
+ "name": "token",
+ "required": true,
+ "in": "path",
+ "schema": {
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "204": {
+ "description": ""
+ },
+ "401": {
+ "description": "Unauthorized"
+ },
+ "403": {
+ "description": "Forbidden action"
+ },
+ "429": {
+ "description": "Rate limit exceeded"
+ }
+ },
+ "security": [
+ {
+ "bearer": []
+ }
+ ],
+ "summary": "Claims project for the specified organization",
+ "tags": ["Organizations"],
+ "x-internal": true
+ }
+ },
+ "/v1/organizations/{slug}/projects": {
+ "get": {
+ "description": "Returns a paginated list of projects for the specified organization.\n\n This endpoint uses offset-based pagination. Use the `offset` parameter to skip a number of projects and the `limit` parameter to control the number of projects returned per page.",
+ "operationId": "v1-get-all-projects-for-organization",
+ "parameters": [
+ {
+ "name": "slug",
+ "required": true,
+ "in": "path",
+ "description": "Organization slug",
+ "schema": {
+ "pattern": "^[\\w-]+$",
+ "type": "string"
+ }
+ },
+ {
+ "name": "offset",
+ "required": false,
+ "in": "query",
+ "description": "Number of projects to skip",
+ "schema": {
+ "minimum": 0,
+ "default": 0,
+ "type": "integer"
+ }
+ },
+ {
+ "name": "limit",
+ "required": false,
+ "in": "query",
+ "description": "Number of projects to return per page",
+ "schema": {
+ "minimum": 1,
+ "maximum": 100,
+ "default": 100,
+ "type": "integer"
+ }
+ },
+ {
+ "name": "search",
+ "required": false,
+ "in": "query",
+ "description": "Search projects by name",
+ "schema": {
+ "type": "string"
+ }
+ },
+ {
+ "name": "sort",
+ "required": false,
+ "in": "query",
+ "description": "Sort order for projects",
+ "schema": {
+ "default": "name_asc",
+ "type": "string",
+ "enum": ["name_asc", "name_desc", "created_asc", "created_desc"]
+ }
+ },
+ {
+ "name": "statuses",
+ "required": false,
+ "in": "query",
+ "description": "A comma-separated list of project statuses to filter by.\n\nThe following values are supported: `ACTIVE_HEALTHY`, `INACTIVE`.",
+ "schema": {
+ "example": "?statuses=ACTIVE_HEALTHY,INACTIVE",
+ "type": "string"
+ }
+ }
+ ],
+ "responses": {
+ "200": {
+ "description": "",
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "properties": {
+ "projects": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "ref": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "cloud_provider": {
+ "type": "string"
+ },
+ "region": {
+ "type": "string"
+ },
+ "is_branch": {
+ "type": "boolean"
+ },
+ "status": {
+ "type": "string",
+ "enum": [
+ "INACTIVE",
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "UNKNOWN",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UPGRADING",
+ "PAUSING",
+ "RESTORE_FAILED",
+ "RESTARTING",
+ "PAUSE_FAILED",
+ "RESIZING"
+ ]
+ },
+ "inserted_at": {
+ "type": "string"
+ },
+ "databases": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "infra_compute_size": {
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ },
+ "region": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string",
+ "enum": [
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UNKNOWN",
+ "INIT_READ_REPLICA",
+ "INIT_READ_REPLICA_FAILED",
+ "RESTARTING",
+ "RESIZING"
+ ]
+ },
+ "cloud_provider": {
+ "type": "string"
+ },
+ "identifier": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string",
+ "enum": ["PRIMARY", "READ_REPLICA"]
+ },
+ "disk_volume_size_gb": {
+ "type": "number"
+ },
+ "disk_type": {
+ "type": "string",
+ "enum": ["gp3", "io2"]
+ },
+ "disk_throughput_mbps": {
+ "type": "number"
+ },
+ "disk_last_modified_at": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "region",
+ "status",
+ "cloud_provider",
+ "identifier",
+ "type"
+ ]
+ }
+ }
+ },
+ "required": [
+ "ref",
+ "name",
+ "cloud_provider",
+ "region",
+ "is_branch",
+ "status",
+ "inserted_at",
+ "databases"
+ ]
+ }
+ },
+ "pagination": {
+ "type": "object",
+ "properties": {
+ "count": {
+ "type": "number",
+ "description": "Total number of projects. Use this to calculate the total number of pages."
+ },
+ "limit": {
+ "type": "number",
+ "description": "Maximum number of projects per page"
},
- "target_subscription_plan": {
- "type": "string",
- "enum": ["free", "pro", "team", "enterprise"],
- "nullable": true
+ "offset": {
+ "type": "number",
+ "description": "Number of projects skipped in this response"
}
},
- "required": [
- "valid",
- "warnings",
- "errors",
- "info",
- "members_exceeding_free_project_limit",
- "source_subscription_plan",
- "target_subscription_plan"
- ]
- },
- "expires_at": {
- "type": "string"
- },
- "created_at": {
- "type": "string"
- },
- "created_by": {
- "type": "string",
- "format": "uuid"
+ "required": ["count", "limit", "offset"]
}
},
- "required": ["project", "preview", "expires_at", "created_at", "created_by"]
+ "required": ["projects", "pagination"]
}
}
}
},
- "401": {
- "description": "Unauthorized"
- },
- "403": {
- "description": "Forbidden action"
- },
- "429": {
- "description": "Rate limit exceeded"
- }
- },
- "security": [
- {
- "bearer": []
- }
- ],
- "summary": "Gets project details for the specified organization and claim token",
- "tags": ["Organizations"],
- "x-internal": true
- },
- "post": {
- "operationId": "v1-claim-project-for-organization",
- "parameters": [
- {
- "name": "slug",
- "required": true,
- "in": "path",
- "description": "Organization slug",
- "schema": {
- "pattern": "^[\\w-]+$",
- "type": "string"
- }
- },
- {
- "name": "token",
- "required": true,
- "in": "path",
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "204": {
- "description": ""
- },
- "401": {
- "description": "Unauthorized"
- },
- "403": {
- "description": "Forbidden action"
- },
- "429": {
- "description": "Rate limit exceeded"
+ "500": {
+ "description": "Failed to retrieve projects"
}
},
"security": [
@@ -17654,9 +18789,8 @@
"bearer": []
}
],
- "summary": "Claims project for the specified organization",
- "tags": ["Organizations"],
- "x-internal": true
+ "summary": "Gets all projects for the given organization",
+ "tags": ["Projects"]
}
}
},
@@ -17879,6 +19013,126 @@
},
"required": ["workflow_run_id", "message"]
},
+ "V1ListProjectsPaginatedResponse": {
+ "type": "object",
+ "properties": {
+ "projects": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "number"
+ },
+ "cloud_provider": {
+ "type": "string"
+ },
+ "inserted_at": {
+ "type": "string",
+ "nullable": true
+ },
+ "name": {
+ "type": "string"
+ },
+ "organization_id": {
+ "type": "number"
+ },
+ "organization_slug": {
+ "type": "string"
+ },
+ "ref": {
+ "type": "string"
+ },
+ "region": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "subscription_id": {
+ "type": "string",
+ "nullable": true
+ },
+ "is_branch_enabled": {
+ "type": "boolean"
+ },
+ "is_physical_backups_enabled": {
+ "type": "boolean",
+ "nullable": true
+ },
+ "preview_branch_refs": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
+ },
+ "disk_volume_size_gb": {
+ "type": "number"
+ },
+ "infra_compute_size": {
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "cloud_provider",
+ "inserted_at",
+ "name",
+ "organization_id",
+ "organization_slug",
+ "ref",
+ "region",
+ "status",
+ "subscription_id",
+ "is_branch_enabled",
+ "is_physical_backups_enabled",
+ "preview_branch_refs"
+ ]
+ }
+ },
+ "pagination": {
+ "type": "object",
+ "properties": {
+ "count": {
+ "type": "number",
+ "description": "Total number of projects. Use this to calculate the total number of pages."
+ },
+ "limit": {
+ "type": "number",
+ "description": "Maximum number of projects per page (actual number may be less)"
+ },
+ "offset": {
+ "type": "number",
+ "description": "Number of projects skipped in this response"
+ }
+ },
+ "required": ["count", "limit", "offset"]
+ }
+ },
+ "required": ["projects", "pagination"]
+ },
"V1ProjectWithDatabaseResponse": {
"type": "object",
"properties": {
@@ -19758,6 +21012,15 @@
}
},
"required": ["healthy", "db_connected", "connected_cluster"]
+ },
+ {
+ "type": "object",
+ "properties": {
+ "db_schema": {
+ "type": "string"
+ }
+ },
+ "required": ["db_schema"]
}
]
},
@@ -20270,6 +21533,14 @@
},
"work_mem": {
"type": "string"
+ },
+ "checkpoint_timeout": {
+ "type": "integer",
+ "minimum": 30,
+ "maximum": 86400
+ },
+ "hot_standby_feedback": {
+ "type": "boolean"
}
}
},
@@ -20358,6 +21629,14 @@
"work_mem": {
"type": "string"
},
+ "checkpoint_timeout": {
+ "type": "integer",
+ "minimum": 30,
+ "maximum": 86400
+ },
+ "hot_standby_feedback": {
+ "type": "boolean"
+ },
"restart_database": {
"type": "boolean"
}
@@ -23343,6 +24622,10 @@
"type": "string",
"minLength": 1
},
+ "parameters": {
+ "type": "array",
+ "items": {}
+ },
"read_only": {
"type": "boolean"
}
@@ -24711,7 +25994,7 @@
},
"status": {
"type": "string",
- "enum": ["AVAILABLE", "PENDING", "REMOVED"]
+ "enum": ["AVAILABLE", "PENDING", "REMOVED", "FAILED"]
}
},
"required": ["name", "status"]
@@ -24894,6 +26177,163 @@
}
},
"required": ["project", "preview", "expires_at", "created_at", "created_by"]
+ },
+ "OrganizationProjectsResponse": {
+ "type": "object",
+ "properties": {
+ "projects": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "ref": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "cloud_provider": {
+ "type": "string"
+ },
+ "region": {
+ "type": "string"
+ },
+ "is_branch": {
+ "type": "boolean"
+ },
+ "status": {
+ "type": "string",
+ "enum": [
+ "INACTIVE",
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "UNKNOWN",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UPGRADING",
+ "PAUSING",
+ "RESTORE_FAILED",
+ "RESTARTING",
+ "PAUSE_FAILED",
+ "RESIZING"
+ ]
+ },
+ "inserted_at": {
+ "type": "string"
+ },
+ "databases": {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "infra_compute_size": {
+ "type": "string",
+ "enum": [
+ "pico",
+ "nano",
+ "micro",
+ "small",
+ "medium",
+ "large",
+ "xlarge",
+ "2xlarge",
+ "4xlarge",
+ "8xlarge",
+ "12xlarge",
+ "16xlarge",
+ "24xlarge",
+ "24xlarge_optimized_memory",
+ "24xlarge_optimized_cpu",
+ "24xlarge_high_memory",
+ "48xlarge",
+ "48xlarge_optimized_memory",
+ "48xlarge_optimized_cpu",
+ "48xlarge_high_memory"
+ ]
+ },
+ "region": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string",
+ "enum": [
+ "ACTIVE_HEALTHY",
+ "ACTIVE_UNHEALTHY",
+ "COMING_UP",
+ "GOING_DOWN",
+ "INIT_FAILED",
+ "REMOVED",
+ "RESTORING",
+ "UNKNOWN",
+ "INIT_READ_REPLICA",
+ "INIT_READ_REPLICA_FAILED",
+ "RESTARTING",
+ "RESIZING"
+ ]
+ },
+ "cloud_provider": {
+ "type": "string"
+ },
+ "identifier": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string",
+ "enum": ["PRIMARY", "READ_REPLICA"]
+ },
+ "disk_volume_size_gb": {
+ "type": "number"
+ },
+ "disk_type": {
+ "type": "string",
+ "enum": ["gp3", "io2"]
+ },
+ "disk_throughput_mbps": {
+ "type": "number"
+ },
+ "disk_last_modified_at": {
+ "type": "string"
+ }
+ },
+ "required": ["region", "status", "cloud_provider", "identifier", "type"]
+ }
+ }
+ },
+ "required": [
+ "ref",
+ "name",
+ "cloud_provider",
+ "region",
+ "is_branch",
+ "status",
+ "inserted_at",
+ "databases"
+ ]
+ }
+ },
+ "pagination": {
+ "type": "object",
+ "properties": {
+ "count": {
+ "type": "number",
+ "description": "Total number of projects. Use this to calculate the total number of pages."
+ },
+ "limit": {
+ "type": "number",
+ "description": "Maximum number of projects per page"
+ },
+ "offset": {
+ "type": "number",
+ "description": "Number of projects skipped in this response"
+ }
+ },
+ "required": ["count", "limit", "offset"]
+ }
+ },
+ "required": ["projects", "pagination"]
}
}
}
From a1f73e57df6b8d4a889fe0ddb594670135d981a1 Mon Sep 17 00:00:00 2001
From: Pedro Rodrigues <44656907+Rodriguespn@users.noreply.github.com>
Date: Fri, 31 Oct 2025 11:53:46 +0000
Subject: [PATCH 2/6] docs: add MCP-lite Edge Functions tutorial (#40004)
* Add Pedro Rodrigues to humans.txt
* docs: add MCP-lite Edge Functions tutorial
- Add comprehensive tutorial on building MCP servers with mcp-lite on Supabase Edge Functions
- Add navigation entries in Examples and Third-Party Tools sections
- Based on Fiberplane blog post about mcp-lite and Supabase integration
* docs: remove redundant 'supabase init' step from MCP-lite tutorial
The template from 'npm create mcp-lite@latest' already initializes Supabase, so this step is not needed.
* docs: clarify local development steps for MCP-lite tutorial
- Separate 'supabase start' and 'supabase functions serve' into distinct steps
- Clarify that npm run dev only serves the function, not starts Supabase
- Make it clear these should be run in separate terminals
* style: format MCP-lite tutorial with prettier
* Update apps/docs/content/guides/functions/examples/mcp-server-mcp-lite.mdx
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Fix rules
---------
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Chris Chinchilla
---
.../NavigationMenu.constants.ts | 8 +
.../examples/mcp-server-mcp-lite.mdx | 300 ++++++++++++++++++
supa-mdx-lint/Rule001HeadingCase.toml | 1 +
supa-mdx-lint/Rule003Spelling.toml | 2 +
4 files changed, 311 insertions(+)
create mode 100644 apps/docs/content/guides/functions/examples/mcp-server-mcp-lite.mdx
diff --git a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
index 9b318b31690dc..9fa8cfc9a37cd 100644
--- a/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
+++ b/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.constants.ts
@@ -1639,6 +1639,10 @@ export const functions: NavMenuConstant = {
name: 'Auth Send Email Hook',
url: '/guides/functions/examples/auth-send-email-hook-react-email-resend' as `/${string}`,
},
+ {
+ name: 'Building an MCP Server with mcp-lite',
+ url: '/guides/functions/examples/mcp-server-mcp-lite' as `/${string}`,
+ },
{
name: 'CORS support for invoking from the browser',
url: '/guides/functions/cors' as `/${string}`,
@@ -1702,6 +1706,10 @@ export const functions: NavMenuConstant = {
url: undefined,
items: [
{ name: 'Dart Edge on Supabase', url: '/guides/functions/dart-edge' },
+ {
+ name: 'mcp-lite (Model Context Protocol)',
+ url: '/guides/functions/examples/mcp-server-mcp-lite' as `/${string}`,
+ },
{
name: 'Browserless.io',
url: '/guides/functions/examples/screenshots' as `/${string}`,
diff --git a/apps/docs/content/guides/functions/examples/mcp-server-mcp-lite.mdx b/apps/docs/content/guides/functions/examples/mcp-server-mcp-lite.mdx
new file mode 100644
index 0000000000000..f81fe9b86f615
--- /dev/null
+++ b/apps/docs/content/guides/functions/examples/mcp-server-mcp-lite.mdx
@@ -0,0 +1,300 @@
+---
+id: 'examples-mcp-server-mcp-lite'
+title: 'Building an MCP Server with mcp-lite'
+description: 'Build and deploy a Model Context Protocol (MCP) server on Supabase Edge Functions using mcp-lite.'
+---
+
+The [Model Context Protocol](https://modelcontextprotocol.io/introduction) (MCP) enables Large Language Models (LLMs) to interact with external tools and data sources. With `mcp-lite`, you can build lightweight MCP servers that run on Supabase Edge Functions, giving your AI assistants the ability to execute custom tools at the edge.
+
+This guide shows you how to scaffold, develop, and deploy an MCP server using mcp-lite on Supabase Edge Functions.
+
+## What is mcp-lite?
+
+[mcp-lite](https://github.com/fiberplane/mcp-lite) is a lightweight, zero-dependency TypeScript framework for building MCP servers. It works everywhere the Fetch API is available, including Node, Bun, Cloudflare Workers, Deno, and Supabase Edge Functions.
+
+## Why Supabase Edge Functions + mcp-lite?
+
+This combination offers several advantages:
+
+- **Zero cold starts**: Edge Functions stay warm for fast responses
+- **Global distribution**: Deploy once and run everywhere
+- **Direct database access**: Connect directly to your Supabase Postgres
+- **Minimal footprint**: mcp-lite has zero runtime dependencies
+- **Full type safety**: TypeScript support in Deno
+- **Simple deployment**: One command to production
+
+## Prerequisites
+
+You need:
+
+- [Docker](https://docs.docker.com/get-docker/) (to run Supabase locally)
+- [Deno](https://deno.land/) (Supabase Edge Functions runtime)
+- [Supabase CLI](/docs/guides/cli/getting-started)
+
+## Create a new MCP server
+
+Starting with `create-mcp-lite@0.3.0`, you can scaffold a complete MCP server that runs on Supabase Edge Functions:
+
+```bash
+npm create mcp-lite@latest
+```
+
+When prompted, select **Supabase Edge Functions (MCP server)** from the template options.
+
+The template creates a focused structure for Edge Functions development:
+
+```
+my-mcp-server/
+├── supabase/
+│ ├── config.toml # Minimal Supabase config (Edge Functions only)
+│ └── functions/
+│ └── mcp-server/
+│ ├── index.ts # MCP server implementation
+│ └── deno.json # Deno imports and configuration
+├── package.json
+└── tsconfig.json
+```
+
+## Understanding the project structure
+
+### Minimal config.toml
+
+The template includes a minimal `config.toml` that runs only Edge Functions - no database, storage, or Studio UI. This keeps your local setup lightweight:
+
+```toml
+# Minimal config for running only Edge Functions (no DB, storage, or studio)
+project_id = "starter-mcp-supabase"
+
+[api]
+enabled = true
+port = 54321
+
+[edge_runtime]
+enabled = true
+policy = "per_worker"
+deno_version = 2
+```
+
+You can always add more services as needed.
+
+### Two Hono apps pattern
+
+The template uses a specific pattern required by Supabase Edge Functions:
+
+```ts
+// Root handler - matches the function name
+const app = new Hono()
+
+// MCP protocol handler
+const mcpApp = new Hono()
+
+mcpApp.get('/', (c) => {
+ return c.json({
+ message: 'MCP Server on Supabase Edge Functions',
+ endpoints: {
+ mcp: '/mcp',
+ health: '/health',
+ },
+ })
+})
+
+mcpApp.all('/mcp', async (c) => {
+ const response = await httpHandler(c.req.raw)
+ return response
+})
+
+// Mount at /mcp-server (the function name)
+app.route('/mcp-server', mcpApp)
+```
+
+This is required because Supabase routes all requests to `//*`. The outer `app` handles the function-level routing, while `mcpApp` handles your actual MCP endpoints.
+
+### Deno import maps
+
+The template uses Deno's import maps in `deno.json` to manage dependencies:
+
+```json
+{
+ "compilerOptions": {
+ "lib": ["deno.window", "deno.ns"],
+ "strict": true
+ },
+ "imports": {
+ "hono": "npm:hono@^4.6.14",
+ "mcp-lite": "npm:mcp-lite@0.8.2",
+ "zod": "npm:zod@^4.1.12"
+ }
+}
+```
+
+This gives you npm package access while staying in the Deno ecosystem.
+
+## Local development
+
+### Start Supabase
+
+Navigate to your project directory and start Supabase services:
+
+```bash
+supabase start
+```
+
+### Serve your function
+
+In a separate terminal, serve your MCP function locally:
+
+```bash
+supabase functions serve --no-verify-jwt mcp-server
+```
+
+Or use the npm script (which runs the same command):
+
+```bash
+npm run dev
+```
+
+Your MCP server is available at:
+
+```
+http://localhost:54321/functions/v1/mcp-server/mcp
+```
+
+### Testing your server
+
+Test the MCP server by adding it to your Claude Code, Claude Desktop, Cursor, or your preferred MCP client.
+
+Using Claude Code:
+
+```bash
+claude mcp add my-mcp-server -t http http://localhost:54321/functions/v1/mcp-server/mcp
+```
+
+You can also test it using the MCP inspector:
+
+```bash
+npx @modelcontextprotocol/inspector
+```
+
+Then add the MCP endpoint URL in the inspector UI.
+
+## How it works
+
+The MCP server setup is straightforward:
+
+```ts
+import { McpServer, StreamableHttpTransport } from 'mcp-lite'
+import { z } from 'zod'
+
+// Create MCP server instance
+const mcp = new McpServer({
+ name: 'starter-mcp-supabase-server',
+ version: '1.0.0',
+ schemaAdapter: (schema) => z.toJSONSchema(schema as z.ZodType),
+})
+
+// Define a tool
+mcp.tool('sum', {
+ description: 'Adds two numbers together',
+ inputSchema: z.object({
+ a: z.number(),
+ b: z.number(),
+ }),
+ handler: (args: { a: number; b: number }) => ({
+ content: [{ type: 'text', text: String(args.a + args.b) }],
+ }),
+})
+
+// Bind to HTTP transport
+const transport = new StreamableHttpTransport()
+const httpHandler = transport.bind(mcp)
+```
+
+## Adding more tools
+
+Extend your MCP server by adding tools directly to the `mcp` instance. Here's an example of adding a database search tool:
+
+```ts
+mcp.tool('searchDatabase', {
+ description: 'Search your Supabase database',
+ inputSchema: z.object({
+ table: z.string(),
+ query: z.string(),
+ }),
+ handler: async (args) => {
+ // Access Supabase client here
+ // const { data } = await supabase.from(args.table).select('*')
+ return {
+ content: [{ type: 'text', text: `Searching ${args.table}...` }],
+ }
+ },
+})
+```
+
+You can add tools that:
+
+- Query your Supabase database
+- Access Supabase Storage for file operations
+- Call external APIs
+- Process data with custom logic
+- Integrate with other Supabase features
+
+## Deploy to production
+
+When ready, deploy to Supabase's global edge network:
+
+```bash
+supabase functions deploy --no-verify-jwt mcp-server
+```
+
+Or use the npm script:
+
+```bash
+npm run deploy
+```
+
+Your MCP server will be live at:
+
+```
+https://your-project-ref.supabase.co/functions/v1/mcp-server/mcp
+```
+
+## Authentication considerations
+
+
+
+The template uses `--no-verify-jwt` for quick development. This means authentication is not enforced by Supabase's JWT layer.
+
+For production, you should implement authentication at the MCP server level following the [MCP Authorization specification](https://modelcontextprotocol.io/specification/draft/basic/authorization). This gives you control over who can access your MCP tools.
+
+
+
+### Security best practices
+
+When deploying MCP servers:
+
+- **Don't expose sensitive data**: Use the server in development environments with non-production data
+- **Implement authentication**: Add proper authentication for production deployments
+- **Validate inputs**: Always validate and sanitize tool inputs
+- **Limit tool scope**: Only expose tools that are necessary for your use case
+- **Monitor usage**: Track tool calls and monitor for unusual activity
+
+For more security guidance, see the [MCP security guide](/guides/getting-started/mcp#security-risks).
+
+## What's next
+
+With your MCP server running on Supabase Edge Functions, you can:
+
+- Connect it to your Supabase database for data-driven tools
+- Use Supabase Auth to secure your endpoints
+- Access Supabase Storage for file operations
+- Deploy to multiple regions automatically
+- Scale to handle production traffic
+- Integrate with AI assistants like Claude, Cursor, or custom MCP clients
+
+## Resources
+
+- [mcp-lite on GitHub](https://github.com/fiberplane/mcp-lite)
+- [Model Context Protocol Spec](https://modelcontextprotocol.io/)
+- [Supabase Edge Functions Docs](/guides/functions)
+- [Deno Runtime Documentation](https://deno.land/)
+- [Fiberplane tutorial](https://blog.fiberplane.com/blog/mcp-lite-supabase-edge-functions/)
diff --git a/supa-mdx-lint/Rule001HeadingCase.toml b/supa-mdx-lint/Rule001HeadingCase.toml
index 685e31d6b4f75..3aec277295e0a 100644
--- a/supa-mdx-lint/Rule001HeadingCase.toml
+++ b/supa-mdx-lint/Rule001HeadingCase.toml
@@ -92,6 +92,7 @@ may_uppercase = [
"GraphQL",
"Heroku",
"Homebrew",
+ "Hono",
"Hooks?",
"Hours",
"Hugging Face",
diff --git a/supa-mdx-lint/Rule003Spelling.toml b/supa-mdx-lint/Rule003Spelling.toml
index a5cdd6f37bfb7..b0f91abca1a65 100644
--- a/supa-mdx-lint/Rule003Spelling.toml
+++ b/supa-mdx-lint/Rule003Spelling.toml
@@ -76,6 +76,7 @@ allow_list = [
"[Ll]iveness",
"LogEvent",
"[Mm]atryoshka",
+ "[Mm][Cc][Pp]",
"[Mm]essageBird",
"MetaMask",
"[Mm]icroservices?",
@@ -177,6 +178,7 @@ allow_list = [
"Erlang",
"ESZip",
"Ethereum",
+ "Fiberplane",
"Figma",
"Firestore",
"Fivetran",
From f88277a7c8dc0430b18c8467f5e688bbb2ba6a06 Mon Sep 17 00:00:00 2001
From: Ali Waseem
Date: Fri, 31 Oct 2025 07:20:11 -0600
Subject: [PATCH 3/6] Fix: Bring back roles filter in Query performance
(#40025)
* brought back roles filter
* feat: hide roles on with monitor
---------
Co-authored-by: kemal
---
.../QueryPerformanceFilterBar.tsx | 42 +++++++++++++++++--
.../WithStatements/WithStatements.tsx | 1 +
2 files changed, 40 insertions(+), 3 deletions(-)
diff --git a/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx
index 9c115b62f843a..0966b590eb76a 100644
--- a/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx
+++ b/apps/studio/components/interfaces/QueryPerformance/QueryPerformanceFilterBar.tsx
@@ -1,19 +1,38 @@
import { useDebounce } from '@uidotdev/usehooks'
import { Search, X } from 'lucide-react'
-import { parseAsString, useQueryStates } from 'nuqs'
+import { parseAsArrayOf, parseAsString, useQueryStates } from 'nuqs'
import { ChangeEvent, ReactNode, useEffect, useState } from 'react'
+import { FilterPopover } from 'components/ui/FilterPopover'
+import { useDatabaseRolesQuery } from 'data/database-roles/database-roles-query'
+import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
import { Button, Tooltip, TooltipContent, TooltipTrigger } from 'ui'
import { Input } from 'ui-patterns/DataInputs/Input'
import { useQueryPerformanceSort } from './hooks/useQueryPerformanceSort'
-export const QueryPerformanceFilterBar = ({ actions }: { actions?: ReactNode }) => {
+export const QueryPerformanceFilterBar = ({
+ actions,
+ showRolesFilter = false,
+}: {
+ actions?: ReactNode
+ showRolesFilter?: boolean
+}) => {
+ const { data: project } = useSelectedProjectQuery()
const { sort, clearSort } = useQueryPerformanceSort()
- const [{ search: searchQuery }, setSearchParams] = useQueryStates({
+ const [{ search: searchQuery, roles: defaultFilterRoles }, setSearchParams] = useQueryStates({
search: parseAsString.withDefault(''),
+ roles: parseAsArrayOf(parseAsString).withDefault([]),
})
+ const { data, isLoading: isLoadingRoles } = useDatabaseRolesQuery({
+ projectRef: project?.ref,
+ connectionString: project?.connectionString,
+ })
+ const roles = (data ?? []).sort((a, b) => a.name.localeCompare(b.name))
+ const [filters, setFilters] = useState<{ roles: string[] }>({
+ roles: defaultFilterRoles,
+ })
const [inputValue, setInputValue] = useState(searchQuery)
const debouncedInputValue = useDebounce(inputValue, 500)
const searchValue = inputValue.length === 0 ? inputValue : debouncedInputValue
@@ -22,6 +41,11 @@ export const QueryPerformanceFilterBar = ({ actions }: { actions?: ReactNode })
setSearchParams({ search: value || '' })
}
+ const onFilterRolesChange = (roles: string[]) => {
+ setFilters({ ...filters, roles })
+ setSearchParams({ roles })
+ }
+
useEffect(() => {
onSearchQueryChange(searchValue)
// eslint-disable-next-line react-hooks/exhaustive-deps
@@ -54,6 +78,18 @@ export const QueryPerformanceFilterBar = ({ actions }: { actions?: ReactNode })
]}
/>
+ {showRolesFilter && (
+
+ )}
+
{sort && (
diff --git a/apps/studio/components/interfaces/QueryPerformance/WithStatements/WithStatements.tsx b/apps/studio/components/interfaces/QueryPerformance/WithStatements/WithStatements.tsx
index b35864d3a4659..8d8ffb3e3feb7 100644
--- a/apps/studio/components/interfaces/QueryPerformance/WithStatements/WithStatements.tsx
+++ b/apps/studio/components/interfaces/QueryPerformance/WithStatements/WithStatements.tsx
@@ -68,6 +68,7 @@ export const WithStatements = ({
<>
Date: Fri, 31 Oct 2025 15:34:10 +0100
Subject: [PATCH 4/6] feat(etl): Improve destination panel UI (#40001)
---
.../DestinationPanel/AdvancedSettings.tsx | 111 +--
.../DestinationPanel/DestinationNameInput.tsx | 29 +
.../DestinationPanel.schema.ts | 66 +-
.../DestinationPanel/DestinationPanel.tsx | 245 ++----
.../DestinationPanelFields.tsx | 705 +++++++++---------
.../DestinationTypeSelection.tsx | 68 ++
.../NoDestinationsAvailable.tsx | 16 +
.../DestinationPanel/PublicationSelection.tsx | 109 +++
.../Database/Replication/Destinations.tsx | 12 +-
.../Replication/NewPublicationPanel.tsx | 9 +-
.../Replication/PublicationsComboBox.tsx | 22 +-
.../Database/Replication/RowMenu.tsx | 61 +-
.../components/interfaces/HomeNew/Home.tsx | 2 +-
.../studio/components/ui/Forms/FormHeader.tsx | 2 +-
.../[ref]/database/replication/index.tsx | 6 +-
15 files changed, 825 insertions(+), 638 deletions(-)
create mode 100644 apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationNameInput.tsx
create mode 100644 apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationTypeSelection.tsx
create mode 100644 apps/studio/components/interfaces/Database/Replication/DestinationPanel/NoDestinationsAvailable.tsx
create mode 100644 apps/studio/components/interfaces/Database/Replication/DestinationPanel/PublicationSelection.tsx
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/AdvancedSettings.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/AdvancedSettings.tsx
index 4f3b864f379cb..47ab32593b554 100644
--- a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/AdvancedSettings.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/AdvancedSettings.tsx
@@ -1,81 +1,98 @@
-import { UseFormReturn } from 'react-hook-form'
+import type { ChangeEvent } from 'react'
+import type { UseFormReturn } from 'react-hook-form'
import {
Accordion_Shadcn_,
AccordionContent_Shadcn_,
AccordionItem_Shadcn_,
AccordionTrigger_Shadcn_,
+ Badge,
FormControl_Shadcn_,
FormField_Shadcn_,
Input_Shadcn_,
} from 'ui'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
-import { DestinationPanelSchemaType } from './DestinationPanel.schema'
+import type { DestinationPanelSchemaType } from './DestinationPanel.schema'
export const AdvancedSettings = ({ form }: { form: UseFormReturn }) => {
const { type } = form.watch()
+ const handleNumberChange =
+ (field: { onChange: (value?: number) => void }) => (e: ChangeEvent) => {
+ const val = e.target.value
+ field.onChange(val === '' ? undefined : Number(val))
+ }
+
return (
-
-
-
- Advanced Settings
-
-
- (
-
-
- {
- const val = e.target.value
- field.onChange(val === '' ? undefined : Number(val))
- }}
- placeholder="Leave empty for default"
- />
-
-
- )}
- />
- {type === 'BigQuery' && (
+
+
+
+
+
+ Advanced settings
+
+ Optional performance tuning
+
+
+
+
+ {/* Batch wait time - applies to all destinations */}
(
{
- const val = e.target.value
- field.onChange(val === '' ? undefined : Number(val))
- }}
- placeholder="Leave empty for default"
+ onChange={handleNumberChange(field)}
+ placeholder="e.g., 5000 (5 seconds)"
/>
)}
/>
- )}
-
-
-
+
+ {/* BigQuery-specific: Max staleness */}
+ {type === 'BigQuery' && (
+
+ (
+
+ Maximum staleness (minutes)
+ BigQuery only
+
+ }
+ layout="vertical"
+ description="Maximum age of cached data before BigQuery reads from base tables at query time. Lower values ensure fresher results but may increase query costs."
+ >
+
+
+
+
+ )}
+ />
+
+ )}
+
+
+
+
)
}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationNameInput.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationNameInput.tsx
new file mode 100644
index 0000000000000..3e9208b371b59
--- /dev/null
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationNameInput.tsx
@@ -0,0 +1,29 @@
+import type { UseFormReturn } from 'react-hook-form'
+
+import { FormControl_Shadcn_, FormField_Shadcn_, Input_Shadcn_ } from 'ui'
+import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
+import type { DestinationPanelSchemaType } from './DestinationPanel.schema'
+
+type DestinationNameInputProps = {
+ form: UseFormReturn
+}
+
+export const DestinationNameInput = ({ form }: DestinationNameInputProps) => {
+ return (
+ (
+
+
+
+
+
+ )}
+ />
+ )
+}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.schema.ts b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.schema.ts
index 4eaa16f39c7f1..6050c7bc4c820 100644
--- a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.schema.ts
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.schema.ts
@@ -26,38 +26,44 @@ export const DestinationPanelFormSchema = z
s3SecretAccessKey: z.string().optional(),
s3Region: z.string().optional(),
})
- .refine(
- (data) => {
- if (data.type === 'BigQuery') {
- return (
- data.projectId &&
- data.projectId.length > 0 &&
- data.datasetId &&
- data.datasetId.length > 0 &&
- data.serviceAccountKey &&
- data.serviceAccountKey.length > 0
- )
- } else if (data.type === 'Analytics Bucket') {
- const hasValidNamespace =
- (data.namespace && data.namespace.length > 0) ||
- (data.namespace === 'create-new-namespace' &&
- data.newNamespaceName &&
- data.newNamespaceName.length > 0)
-
- return (
- data.warehouseName &&
- data.warehouseName.length > 0 &&
- hasValidNamespace &&
- data.s3Region &&
- data.s3Region.length > 0
+ .superRefine((data, ctx) => {
+ const addRequiredFieldError = (path: string, message: string) => {
+ ctx.addIssue({
+ code: z.ZodIssueCode.custom,
+ message,
+ path: [path],
+ })
+ }
+
+ if (data.type === 'BigQuery') {
+ if (!data.projectId?.length) addRequiredFieldError('projectId', 'Project ID is required')
+ if (!data.datasetId?.length) addRequiredFieldError('datasetId', 'Dataset ID is required')
+ if (!data.serviceAccountKey?.length)
+ addRequiredFieldError('serviceAccountKey', 'Service Account Key is required')
+ } else if (data.type === 'Analytics Bucket') {
+ if (!data.warehouseName?.length) addRequiredFieldError('warehouseName', 'Bucket is required')
+
+ const hasValidNamespace =
+ (data.namespace?.length && data.namespace !== 'create-new-namespace') ||
+ (data.namespace === 'create-new-namespace' && data.newNamespaceName?.length)
+
+ if (!hasValidNamespace) {
+ const isCreatingNew = data.namespace === 'create-new-namespace'
+ addRequiredFieldError(
+ isCreatingNew ? 'newNamespaceName' : 'namespace',
+ isCreatingNew ? 'Namespace name is required' : 'Namespace is required'
)
}
- return true
- },
- {
- message: 'All fields are required for the selected destination type',
- path: ['projectId'],
+
+ if (!data.s3Region?.length) addRequiredFieldError('s3Region', 'S3 Region is required')
+
+ if (!data.s3AccessKeyId?.length)
+ addRequiredFieldError('s3AccessKeyId', 'S3 Access Key ID is required')
+
+ if (data.s3AccessKeyId !== 'create-new' && !data.s3SecretAccessKey?.length) {
+ addRequiredFieldError('s3SecretAccessKey', 'S3 Secret Access Key is required')
+ }
}
- )
+ })
export type DestinationPanelSchemaType = z.infer
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.tsx
index a4ef25e9f17c5..1699b811e592d 100644
--- a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanel.tsx
@@ -5,9 +5,8 @@ import { useForm } from 'react-hook-form'
import { toast } from 'sonner'
import * as z from 'zod'
-import { useParams } from 'common'
+import { useFlag, useParams } from 'common'
import { getCatalogURI } from 'components/interfaces/Storage/StorageSettings/StorageSettings.utils'
-import { InlineLink } from 'components/ui/InlineLink'
import { getKeys, useAPIKeysQuery } from 'data/api-keys/api-keys-query'
import { useProjectSettingsV2Query } from 'data/config/project-settings-v2-query'
import { useCheckPrimaryKeysExists } from 'data/database/primary-keys-exists-query'
@@ -28,14 +27,6 @@ import {
Button,
DialogSectionSeparator,
Form_Shadcn_,
- FormControl_Shadcn_,
- FormField_Shadcn_,
- Input_Shadcn_,
- Select_Shadcn_,
- SelectContent_Shadcn_,
- SelectGroup_Shadcn_,
- SelectItem_Shadcn_,
- SelectTrigger_Shadcn_,
Sheet,
SheetContent,
SheetDescription,
@@ -44,15 +35,15 @@ import {
SheetSection,
SheetTitle,
} from 'ui'
-import { Admonition } from 'ui-patterns'
-import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
-import { NewPublicationPanel } from '../NewPublicationPanel'
-import { PublicationsComboBox } from '../PublicationsComboBox'
import { ReplicationDisclaimerDialog } from '../ReplicationDisclaimerDialog'
import { AdvancedSettings } from './AdvancedSettings'
+import { DestinationNameInput } from './DestinationNameInput'
import { CREATE_NEW_KEY, CREATE_NEW_NAMESPACE } from './DestinationPanel.constants'
import { DestinationPanelFormSchema as FormSchema, TypeEnum } from './DestinationPanel.schema'
import { AnalyticsBucketFields, BigQueryFields } from './DestinationPanelFields'
+import { DestinationTypeSelection } from './DestinationTypeSelection'
+import { NoDestinationsAvailable } from './NoDestinationsAvailable'
+import { PublicationSelection } from './PublicationSelection'
const formId = 'destination-editor'
@@ -79,8 +70,22 @@ export const DestinationPanel = ({
const { data: project } = useSelectedProjectQuery()
const { setRequestStatus } = usePipelineRequestStatus()
+ // Feature flags for ETL destinations
+ const etlEnableBigQuery = useFlag('etlEnableBigQuery')
+ const etlEnableIceberg = useFlag('etlEnableIceberg')
+
+ // Compute available destinations based on feature flags
+ const availableDestinations = useMemo(() => {
+ const destinations = []
+ if (etlEnableBigQuery) destinations.push({ value: 'BigQuery', label: 'BigQuery' })
+ if (etlEnableIceberg)
+ destinations.push({ value: 'Analytics Bucket', label: 'Analytics Bucket' })
+ return destinations
+ }, [etlEnableBigQuery, etlEnableIceberg])
+
+ const hasNoAvailableDestinations = availableDestinations.length === 0
+
const editMode = !!existingDestination
- const [publicationPanelVisible, setPublicationPanelVisible] = useState(false)
const [showDisclaimerDialog, setShowDisclaimerDialog] = useState(false)
const [pendingFormValues, setPendingFormValues] = useState | null>(
null
@@ -107,7 +112,6 @@ export const DestinationPanel = ({
const {
data: publications = [],
- isLoading: isLoadingPublications,
isSuccess: isSuccessPublications,
refetch: refetchPublications,
} = useReplicationPublicationsQuery({ projectRef, sourceId })
@@ -129,18 +133,19 @@ export const DestinationPanel = ({
const { data: projectSettings } = useProjectSettingsV2Query({ projectRef })
const defaultValues = useMemo(() => {
- // Type guards to safely access union properties
const config = destinationData?.config
const isBigQueryConfig = config && 'big_query' in config
const isIcebergConfig = config && 'iceberg' in config
+ const defaultType = editMode
+ ? isBigQueryConfig
+ ? TypeEnum.enum.BigQuery
+ : TypeEnum.enum['Analytics Bucket']
+ : (availableDestinations[0]?.value as z.infer) || TypeEnum.enum.BigQuery
+
return {
// Common fields
- type: (isBigQueryConfig
- ? TypeEnum.enum.BigQuery
- : isIcebergConfig
- ? TypeEnum.enum['Analytics Bucket']
- : TypeEnum.enum.BigQuery) as z.infer,
+ type: defaultType,
name: destinationData?.name ?? '',
publicationName: pipelineData?.config.publication_name ?? '',
maxFillMs: pipelineData?.config?.batch?.max_fill_ms,
@@ -159,11 +164,18 @@ export const DestinationPanel = ({
s3Region:
projectSettings?.region ?? (isIcebergConfig ? config.iceberg.supabase.s3_region : ''),
}
- }, [destinationData, pipelineData, catalogToken, projectSettings])
+ }, [
+ destinationData,
+ pipelineData,
+ catalogToken,
+ projectSettings,
+ editMode,
+ availableDestinations,
+ ])
const form = useForm>({
- mode: 'onBlur',
- reValidateMode: 'onBlur',
+ mode: 'onChange',
+ reValidateMode: 'onChange',
resolver: zodResolver(FormSchema),
defaultValues,
})
@@ -191,7 +203,11 @@ export const DestinationPanel = ({
const hasTablesWithNoPrimaryKeys = (checkPrimaryKeysExistsData?.offendingTables ?? []).length > 0
const isSubmitDisabled =
- isSaving || isSelectedPublicationMissing || isLoadingCheck || hasTablesWithNoPrimaryKeys
+ isSaving ||
+ isSelectedPublicationMissing ||
+ (!!selectedPublication && isLoadingCheck) ||
+ hasTablesWithNoPrimaryKeys ||
+ (!editMode && hasNoAvailableDestinations)
// Helper function to handle namespace creation if needed
const resolveNamespace = async (data: z.infer) => {
@@ -425,143 +441,52 @@ export const DestinationPanel = ({
{editMode ? 'Edit destination' : 'Create a new destination'}
- {editMode ? null : 'Send data to a new destination'}
+ {editMode
+ ? 'Update the configuration for this destination'
+ : 'A destination is an external platform that automatically receives your database changes in real time.'}
-
-
-
+
+
+ )}
@@ -591,12 +516,6 @@ export const DestinationPanel = ({
isLoading={isSaving}
onConfirm={handleDisclaimerConfirm}
/>
-
- setPublicationPanelVisible(false)}
- />
>
)
}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanelFields.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanelFields.tsx
index c5c855e8707aa..283c180190b69 100644
--- a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanelFields.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationPanelFields.tsx
@@ -1,6 +1,6 @@
import { Eye, EyeOff, Loader2 } from 'lucide-react'
import { useMemo, useState } from 'react'
-import { UseFormReturn } from 'react-hook-form'
+import type { UseFormReturn } from 'react-hook-form'
import { useParams } from 'common'
import { useIsNewStorageUIEnabled } from 'components/interfaces/App/FeaturePreview/FeaturePreviewContext'
@@ -14,7 +14,6 @@ import { useStorageCredentialsQuery } from 'data/storage/s3-access-key-query'
import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
import {
Button,
- DialogSectionSeparator,
FormControl_Shadcn_,
FormField_Shadcn_,
Input_Shadcn_,
@@ -31,61 +30,75 @@ import { Admonition } from 'ui-patterns'
import { Input } from 'ui-patterns/DataInputs/Input'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { CREATE_NEW_KEY, CREATE_NEW_NAMESPACE } from './DestinationPanel.constants'
-import { DestinationPanelSchemaType } from './DestinationPanel.schema'
+import type { DestinationPanelSchemaType } from './DestinationPanel.schema'
export const BigQueryFields = ({ form }: { form: UseFormReturn }) => {
return (
<>
- (
-
-
-
-
-
- )}
- />
+
+
BigQuery settings
+
+ Configure how data is sent to your BigQuery destination
+
+
+
+ (
+
+
+
+
+
+ )}
+ />
- (
-
-
-
-
-
- )}
- />
+ (
+
+
+
+
+
+ )}
+ />
- (
-
-
-
-
-
- )}
- />
+ (
+
+
+
+
+
+ )}
+ />
+
>
)
}
@@ -168,327 +181,333 @@ export const AnalyticsBucketFields = ({
return (
<>
- (
-
- {isLoadingBuckets ? (
- }
- >
- Retrieving buckets
-
- ) : isErrorBuckets ? (
- }
- >
- Failed to retrieve buckets
-
- ) : (
-
- {
- setIsFormInteracting(true)
- field.onChange(value)
- // [Joshen] Ideally should select the first namespace of the selected bucket
- form.setValue('namespace', '')
- }}
+
+
Analytics Bucket settings
+
+ Configure how data is sent to your Analytics Bucket destination
+
+
+
- ) : null
- }
- />
-
- )}
- />
-
- (
-
- {isLoadingKeys ? (
- }
- >
- Retrieving keys
-
- ) : isErrorKeys ? (
- }
+ {namespace === CREATE_NEW_NAMESPACE && (
+ (
+
- Failed to retrieve keys
-
- ) : (
-
-
-
- {field.value === CREATE_NEW_KEY
- ? 'Create a new key'
- : (field.value ?? '').length === 0
- ? 'Select an access key ID'
- : field.value}
-
-
-
- {s3Keys.map((key) => (
-
- {key.access_key}
- {key.description}
-
- ))}
-
-
- Create a new key
-
-
-
-
-
+
+
+
+
)}
-
+ />
)}
- />
- {isSuccessKeys && keyNoLongerExists && (
-
-
-
- Please select another key or create a new set, as this destination will not work
- otherwise. S3 access keys can be managed in your{' '}
-
- storage settings
-
-
-
-
- )}
-
- {s3AccessKeyId === CREATE_NEW_KEY ? (
-
-
-
- S3 access keys can be managed in your{' '}
-
- storage settings
-
- .
-
-
-
- ) : (
(
+ Automatically retrieved from your project's{' '}
+
+ service role key
+
+ >
+ }
>
-
-
-
- : }
- className="w-7 absolute right-6 top-[33px]"
- onClick={() => setShowSecretAccessKey(!showSecretAccessKey)}
+
+ : }
+ onClick={() => setShowCatalogToken(!showCatalogToken)}
+ />
+
+ ) : null
+ }
/>
)}
/>
- )}
+
+ (
+
+ {isLoadingKeys ? (
+ }
+ >
+ Retrieving keys
+
+ ) : isErrorKeys ? (
+ }
+ >
+ Failed to retrieve keys
+
+ ) : (
+
+
+
+ {field.value === CREATE_NEW_KEY
+ ? 'Create a new key'
+ : (field.value ?? '').length === 0
+ ? 'Select an access key ID'
+ : field.value}
+
+
+
+ {s3Keys.map((key) => (
+
+ {key.access_key}
+ {key.description}
+
+ ))}
+
+
+ Create a new key
+
+
+
+
+
+ )}
+
+ )}
+ />
+
+ {isSuccessKeys && keyNoLongerExists && (
+
+
+
+ Please select another key or create a new set, as this destination will not work
+ otherwise. S3 access keys can be managed in your{' '}
+
+ storage settings
+
+
+
+
+ )}
+
+ {s3AccessKeyId === CREATE_NEW_KEY ? (
+
+
+
+ S3 access keys can be managed in your{' '}
+
+ storage settings
+
+ .
+
+
+
+ ) : (
+ (
+
+
+
+
+ : }
+ className="w-7 absolute right-6 top-[33px]"
+ onClick={() => setShowSecretAccessKey(!showSecretAccessKey)}
+ />
+
+ )}
+ />
+ )}
+
>
)
}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationTypeSelection.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationTypeSelection.tsx
new file mode 100644
index 0000000000000..d99fb5fc99d0b
--- /dev/null
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationTypeSelection.tsx
@@ -0,0 +1,68 @@
+import type { UseFormReturn } from 'react-hook-form'
+
+import { useFlag } from 'common'
+import {
+ FormControl_Shadcn_,
+ FormField_Shadcn_,
+ RadioGroupStacked,
+ RadioGroupStackedItem,
+} from 'ui'
+import type { DestinationPanelSchemaType } from './DestinationPanel.schema'
+
+type DestinationTypeSelectionProps = {
+ form: UseFormReturn
+ editMode: boolean
+}
+
+export const DestinationTypeSelection = ({ form, editMode }: DestinationTypeSelectionProps) => {
+ const etlEnableBigQuery = useFlag('etlEnableBigQuery')
+ const etlEnableIceberg = useFlag('etlEnableIceberg')
+
+ return (
+
+
Destination type
+ {editMode ? (
+
+ The destination type cannot be changed after creation
+
+ ) : (
+
+ Choose which platform to send your database changes to
+
+ )}
+
(
+
+ field.onChange(value)}
+ >
+ {((!editMode && etlEnableBigQuery) || (editMode && field.value === 'BigQuery')) && (
+
+ )}
+ {((!editMode && etlEnableIceberg) ||
+ (editMode && field.value === 'Analytics Bucket')) && (
+
+ )}
+
+
+ )}
+ />
+
+ )
+}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/NoDestinationsAvailable.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/NoDestinationsAvailable.tsx
new file mode 100644
index 0000000000000..a99fa42a52d72
--- /dev/null
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/NoDestinationsAvailable.tsx
@@ -0,0 +1,16 @@
+import { DatabaseZap } from 'lucide-react'
+
+export const NoDestinationsAvailable = () => {
+ return (
+
+
+
+
+
No destinations available
+
+ Replication destinations are not currently enabled for this project. Contact support to
+ enable real-time data replication to external platforms.
+
+
+ )
+}
diff --git a/apps/studio/components/interfaces/Database/Replication/DestinationPanel/PublicationSelection.tsx b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/PublicationSelection.tsx
new file mode 100644
index 0000000000000..ad2a00a53b161
--- /dev/null
+++ b/apps/studio/components/interfaces/Database/Replication/DestinationPanel/PublicationSelection.tsx
@@ -0,0 +1,109 @@
+import { useMemo, useState } from 'react'
+import type { UseFormReturn } from 'react-hook-form'
+
+import { useParams } from 'common'
+import { InlineLink } from 'components/ui/InlineLink'
+import { useCheckPrimaryKeysExists } from 'data/database/primary-keys-exists-query'
+import { useReplicationPublicationsQuery } from 'data/replication/publications-query'
+import { useSelectedProjectQuery } from 'hooks/misc/useSelectedProject'
+import { FormControl_Shadcn_, FormField_Shadcn_ } from 'ui'
+import { Admonition } from 'ui-patterns'
+import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
+import { NewPublicationPanel } from '../NewPublicationPanel'
+import { PublicationsComboBox } from '../PublicationsComboBox'
+import type { DestinationPanelSchemaType } from './DestinationPanel.schema'
+
+type PublicationSelectionProps = {
+ form: UseFormReturn
+ sourceId?: number
+ visible: boolean
+}
+
+export const PublicationSelection = ({ form, sourceId, visible }: PublicationSelectionProps) => {
+ const { ref: projectRef } = useParams()
+ const { data: project } = useSelectedProjectQuery()
+ const { publicationName } = form.watch()
+
+ const [publicationPanelVisible, setPublicationPanelVisible] = useState(false)
+
+ const {
+ data: publications = [],
+ isLoading: isLoadingPublications,
+ isSuccess: isSuccessPublications,
+ } = useReplicationPublicationsQuery({ projectRef, sourceId })
+
+ const publicationNames = useMemo(() => publications?.map((pub) => pub.name) ?? [], [publications])
+ const selectedPublication = publications.find((pub) => pub.name === publicationName)
+ const isSelectedPublicationMissing =
+ isSuccessPublications && !!publicationName && !publicationNames.includes(publicationName)
+
+ const { data: checkPrimaryKeysExistsData, isLoading: isLoadingCheck } = useCheckPrimaryKeysExists(
+ {
+ projectRef: project?.ref,
+ connectionString: project?.connectionString,
+ tables: selectedPublication?.tables ?? [],
+ },
+ { enabled: visible && !!selectedPublication }
+ )
+ const hasTablesWithNoPrimaryKeys = (checkPrimaryKeysExistsData?.offendingTables ?? []).length > 0
+
+ return (
+ <>
+ (
+
+
+ setPublicationPanelVisible(true)}
+ />
+
+ {isSelectedPublicationMissing ? (
+
+
+ The publication {publicationName} was
+ not found, it may have been renamed or deleted, please select another one.
+
+
+ ) : hasTablesWithNoPrimaryKeys ? (
+
+
+ Replication requires every table in the publication to have a primary key to work,
+ which these tables are missing:
+
+
+ {(checkPrimaryKeysExistsData?.offendingTables ?? []).map((x) => {
+ const value = `${x.schema}.${x.name}`
+ return (
+
+
+ {value}
+
+
+ )
+ })}
+
+ Ensure that these tables have primary keys first.
+
+ ) : null}
+
+ )}
+ />
+
+ setPublicationPanelVisible(false)}
+ />
+ >
+ )
+}
diff --git a/apps/studio/components/interfaces/Database/Replication/Destinations.tsx b/apps/studio/components/interfaces/Database/Replication/Destinations.tsx
index fe695472be37c..5cf36ba143027 100644
--- a/apps/studio/components/interfaces/Database/Replication/Destinations.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/Destinations.tsx
@@ -129,9 +129,10 @@ export const Destinations = () => {
{replicationNotEnabled ? (
-
Run analysis on your data via integrations with Replication
+
Stream data to external destinations in real-time
- Enable replication on your project to send data to your first destination
+ Enable replication to start sending your database changes to data warehouses and
+ analytics platforms
@@ -189,10 +190,11 @@ export const Destinations = () => {
'flex flex-col px-10 rounded-lg justify-center items-center py-8 mt-4'
)}
>
-
Send data to your first destination
+
Create your first destination
- Use destinations to improve performance or run analysis on your data via
- integrations like BigQuery
+ Destinations are external platforms where your database changes are automatically
+ sent. Connect to data warehouses like BigQuery or analytics buckets to enable
+ real-time data pipelines.
}
diff --git a/apps/studio/components/interfaces/Database/Replication/NewPublicationPanel.tsx b/apps/studio/components/interfaces/Database/Replication/NewPublicationPanel.tsx
index e062afeb6b843..c8347316355ad 100644
--- a/apps/studio/components/interfaces/Database/Replication/NewPublicationPanel.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/NewPublicationPanel.tsx
@@ -1,10 +1,12 @@
import { zodResolver } from '@hookform/resolvers/zod'
-import { useParams } from 'common'
-import { useCreatePublicationMutation } from 'data/replication/create-publication-mutation'
-import { useReplicationTablesQuery } from 'data/replication/tables-query'
import { X } from 'lucide-react'
import { useForm } from 'react-hook-form'
import { toast } from 'sonner'
+import { z } from 'zod'
+
+import { useParams } from 'common'
+import { useCreatePublicationMutation } from 'data/replication/create-publication-mutation'
+import { useReplicationTablesQuery } from 'data/replication/tables-query'
import {
Button,
cn,
@@ -23,7 +25,6 @@ import {
} from 'ui'
import { FormItemLayout } from 'ui-patterns/form/FormItemLayout/FormItemLayout'
import { MultiSelector } from 'ui-patterns/multi-select'
-import { z } from 'zod'
interface NewPublicationPanelProps {
visible: boolean
diff --git a/apps/studio/components/interfaces/Database/Replication/PublicationsComboBox.tsx b/apps/studio/components/interfaces/Database/Replication/PublicationsComboBox.tsx
index c0927679aa655..f577f9377233d 100644
--- a/apps/studio/components/interfaces/Database/Replication/PublicationsComboBox.tsx
+++ b/apps/studio/components/interfaces/Database/Replication/PublicationsComboBox.tsx
@@ -36,20 +36,16 @@ export const PublicationsComboBox = ({
const [selectedPublication, setSelectedPublication] = useState
(field?.value || '')
const [searchTerm, setSearchTerm] = useState('')
- useEffect(() => {
- setSelectedPublication(field?.value || '')
- }, [field?.value])
-
- function handleSearchChange(value: string) {
- setSearchTerm(value)
- }
-
function handlePublicationSelect(pub: string) {
setSelectedPublication(pub)
setDropdownOpen(false)
field.onChange(pub)
}
+ useEffect(() => {
+ setSelectedPublication(field?.value || '')
+ }, [field?.value])
+
return (
@@ -100,7 +96,13 @@ export const PublicationsComboBox = ({
'No publications found'
)}
+
+ {publications.length === 0 && (
+
+ No publications available
+
+ )}
7 ? 'h-[210px]' : ''}>
{publications.map((pub) => (
+
+
- ) : statusName === PipelineStatusName.STARTED ? (
-
- ) : statusName === PipelineStatusName.FAILED ? (
-
- ) : null
-
- const pipelineActionLabel =
- statusName === PipelineStatusName.STOPPED
- ? 'Start pipeline'
- : statusName === PipelineStatusName.STARTED
- ? 'Stop pipeline'
- : statusName === PipelineStatusName.FAILED
- ? 'Restart pipeline'
- : null
+ // Show both stop and restart for started/failed states
+ const showStopAndRestart =
+ canPerformActions &&
+ (statusName === PipelineStatusName.STARTED || statusName === PipelineStatusName.FAILED)
+
+ // Show only start for stopped state
+ const showStart = canPerformActions && statusName === PipelineStatusName.STOPPED
const onEnablePipeline = async () => {
if (!projectRef) return console.error('Project ref is required')
@@ -160,23 +152,24 @@ export const RowMenu = ({
>
)}
- {hasPipelineAction && (
+ {showStart && (
<>
- {
- if (statusName === PipelineStatusName.STOPPED) {
- onEnablePipeline()
- } else if (statusName === PipelineStatusName.STARTED) {
- onDisablePipeline()
- } else if (statusName === PipelineStatusName.FAILED) {
- onRestartPipeline()
- }
- }}
- >
- {pipelineActionIcon}
- {pipelineActionLabel}
+
+
+ Start pipeline
+
+
+ >
+ )}
+ {showStopAndRestart && (
+ <>
+
+
+ Restart pipeline
+
+
+
+ Stop pipeline
>
diff --git a/apps/studio/components/interfaces/HomeNew/Home.tsx b/apps/studio/components/interfaces/HomeNew/Home.tsx
index 49d80d5c36a67..5e00cf6160ce3 100644
--- a/apps/studio/components/interfaces/HomeNew/Home.tsx
+++ b/apps/studio/components/interfaces/HomeNew/Home.tsx
@@ -1,6 +1,6 @@
-import dayjs from 'dayjs'
import { DndContext, DragEndEvent, PointerSensor, useSensor, useSensors } from '@dnd-kit/core'
import { arrayMove, SortableContext, verticalListSortingStrategy } from '@dnd-kit/sortable'
+import dayjs from 'dayjs'
import { useEffect, useRef } from 'react'
import { IS_PLATFORM, useParams } from 'common'
diff --git a/apps/studio/components/ui/Forms/FormHeader.tsx b/apps/studio/components/ui/Forms/FormHeader.tsx
index aa7da61dd0e82..ee6cc8388ddcf 100644
--- a/apps/studio/components/ui/Forms/FormHeader.tsx
+++ b/apps/studio/components/ui/Forms/FormHeader.tsx
@@ -23,7 +23,7 @@ export const FormHeader = ({
>
{title}
- {description &&
{description}
}
+ {description &&
{description}
}
{docsUrl !== undefined &&
}
diff --git a/apps/studio/pages/project/[ref]/database/replication/index.tsx b/apps/studio/pages/project/[ref]/database/replication/index.tsx
index 9b78e282d034e..b47f8257ff428 100644
--- a/apps/studio/pages/project/[ref]/database/replication/index.tsx
+++ b/apps/studio/pages/project/[ref]/database/replication/index.tsx
@@ -26,7 +26,11 @@ const DatabaseReplicationPage: NextPageWithLayout = () => {
-
+
From 2c0b2ba0794ddd2671afeb509a77ba69cb10d8ec Mon Sep 17 00:00:00 2001
From: Joshen Lim
Date: Fri, 31 Oct 2025 22:35:02 +0800
Subject: [PATCH 5/6] Smol feex (#40041)
* Smol feex
* Small fix
---
.../BillingCustomerDataForm.tsx | 36 +++++++++----------
apps/studio/components/layouts/Scaffold.tsx | 4 +--
2 files changed, 18 insertions(+), 22 deletions(-)
diff --git a/apps/studio/components/interfaces/Organization/BillingSettings/BillingCustomerData/BillingCustomerDataForm.tsx b/apps/studio/components/interfaces/Organization/BillingSettings/BillingCustomerData/BillingCustomerDataForm.tsx
index 7440ff506fb57..245b0f3ceec8b 100644
--- a/apps/studio/components/interfaces/Organization/BillingSettings/BillingCustomerData/BillingCustomerDataForm.tsx
+++ b/apps/studio/components/interfaces/Organization/BillingSettings/BillingCustomerData/BillingCustomerDataForm.tsx
@@ -16,7 +16,6 @@ import {
FormField_Shadcn_ as FormField,
FormMessage_Shadcn_ as FormMessage,
Input_Shadcn_ as Input,
- Input_Shadcn_,
Popover_Shadcn_ as Popover,
PopoverContent_Shadcn_ as PopoverContent,
PopoverTrigger_Shadcn_ as PopoverTrigger,
@@ -83,7 +82,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
@@ -96,7 +95,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
@@ -109,7 +108,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
(
+ render={({ field }) => (
@@ -155,7 +154,7 @@ export const BillingCustomerDataForm = ({
-
+
@@ -195,7 +194,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
@@ -210,7 +209,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
@@ -222,7 +221,7 @@ export const BillingCustomerDataForm = ({
(
+ render={({ field }) => (
@@ -237,7 +236,7 @@ export const BillingCustomerDataForm = ({
(
+ render={() => (
@@ -248,14 +247,11 @@ export const BillingCustomerDataForm = ({
size="medium"
disabled={disabled}
className={cn(
- 'w-full justify-between h-[34px]',
+ 'w-full justify-between h-[34px] pr-2',
!selectedTaxId && 'text-muted'
)}
iconRight={
-
+
}
>
{selectedTaxId
@@ -264,7 +260,7 @@ export const BillingCustomerDataForm = ({
-
+
@@ -299,17 +295,17 @@ export const BillingCustomerDataForm = ({
/>
{selectedTaxId && (
-
+
(
-
+
-
diff --git a/apps/studio/components/layouts/Scaffold.tsx b/apps/studio/components/layouts/Scaffold.tsx
index e30e37e951ee4..b529cee0a22fb 100644
--- a/apps/studio/components/layouts/Scaffold.tsx
+++ b/apps/studio/components/layouts/Scaffold.tsx
@@ -34,7 +34,7 @@ export const ScaffoldContainer = forwardRef<
ref={ref}
{...props}
className={cn(
- 'mx-auto w-full',
+ 'mx-auto w-full @container',
maxWidthClass,
PADDING_CLASSES,
bottomPadding && 'pb-16',
@@ -93,7 +93,7 @@ export const ScaffoldSection = forwardRef<
{...props}
className={cn(
'flex flex-col first:pt-12 py-6',
- isFullWidth ? 'w-full' : 'gap-3 @lg:grid @md:grid-cols-12',
+ isFullWidth ? 'w-full' : 'gap-3 @md:grid-cols-12 @lg:grid',
className
)}
/>
From 474a78721e510301d15ca9dbd41f05ce10fa29e5 Mon Sep 17 00:00:00 2001
From: Jordi Enric <37541088+jordienr@users.noreply.github.com>
Date: Fri, 31 Oct 2025 16:30:07 +0100
Subject: [PATCH 6/6] feat: make log table scrollable FE-2060 (#40044)
make scrollable
---
.../LogColumnRenderers/AuthColumnRenderer.tsx | 1 +
.../DatabaseApiColumnRender.tsx | 1 +
.../DatabasePostgresColumnRender.tsx | 1 +
.../DefaultPreviewColumnRenderer.tsx | 1 +
.../FunctionsEdgeColumnRender.tsx | 1 +
.../FunctionsLogsColumnRender.tsx | 1 +
apps/studio/styles/react-data-grid-logs.scss | 16 +++++++++++++++-
7 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/AuthColumnRenderer.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/AuthColumnRenderer.tsx
index 6262a2ef89974..ce42ab399d7f8 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/AuthColumnRenderer.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/AuthColumnRenderer.tsx
@@ -9,6 +9,7 @@ const columns: Column[] = [
{
name: 'auth-first-column',
key: 'auth-first-column',
+ renderHeaderCell: () => null,
renderCell: (props) => {
if (!props.row.level) {
return defaultRenderCell(props)
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabaseApiColumnRender.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabaseApiColumnRender.tsx
index 1af90fe8c9dd9..9f3b12f0a6f08 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabaseApiColumnRender.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabaseApiColumnRender.tsx
@@ -8,6 +8,7 @@ const columns: Column[] = [
{
name: 'database-api-first-column',
key: 'database-api-first-column',
+ renderHeaderCell: () => null,
renderCell: (props) => {
if (!props.row.status_code && !props.row.method && !props.row.path) {
return defaultRenderCell(props)
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabasePostgresColumnRender.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabasePostgresColumnRender.tsx
index 5090058604166..85df191c40a5b 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabasePostgresColumnRender.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DatabasePostgresColumnRender.tsx
@@ -8,6 +8,7 @@ const columns: Column[] = [
{
name: 'database-postgres-first-column',
key: 'database-postgres-first-column',
+ renderHeaderCell: () => null,
renderCell: (props) => {
if (!props.row.error_severity) {
return defaultRenderCell(props)
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DefaultPreviewColumnRenderer.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DefaultPreviewColumnRenderer.tsx
index 997361ffbb91b..dc828c1f2656d 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DefaultPreviewColumnRenderer.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/DefaultPreviewColumnRenderer.tsx
@@ -14,6 +14,7 @@ const columns: Column[] = [
{
name: 'default-preview-first-column',
key: 'default-preview-first-column',
+ renderHeaderCell: () => null,
renderCell: defaultRenderCell,
},
]
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsEdgeColumnRender.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsEdgeColumnRender.tsx
index 3e2ea9b11d3a8..2e60afb1f6da9 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsEdgeColumnRender.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsEdgeColumnRender.tsx
@@ -8,6 +8,7 @@ const columns: Column[] = [
{
name: 'functions-edge-first-column',
key: 'functions-edge-first-column',
+ renderHeaderCell: () => null,
renderCell: (props) => {
if (!props.row.status_code && !props.row.method) {
return defaultRenderCell(props)
diff --git a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsLogsColumnRender.tsx b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsLogsColumnRender.tsx
index 9fcb99c4216a0..ef551444456a5 100644
--- a/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsLogsColumnRender.tsx
+++ b/apps/studio/components/interfaces/Settings/Logs/LogColumnRenderers/FunctionsLogsColumnRender.tsx
@@ -8,6 +8,7 @@ const columns: Column[] = [
{
name: 'functions-logs-first-column',
key: 'functions-logs-first-column',
+ renderHeaderCell: () => null,
renderCell: (props) => {
if (!props.row.event_type && !props.row.level) {
return defaultRenderCell(props)
diff --git a/apps/studio/styles/react-data-grid-logs.scss b/apps/studio/styles/react-data-grid-logs.scss
index 936cc413c182c..1ec5c499e83f1 100644
--- a/apps/studio/styles/react-data-grid-logs.scss
+++ b/apps/studio/styles/react-data-grid-logs.scss
@@ -1,9 +1,16 @@
.data-grid--simple-logs {
+ .rdg {
+ overflow-x: auto;
+ min-width: 0;
+ }
+
.rdg-cell,
.rdg-cell span {
@apply text-foreground-light font-normal;
border-left: none;
border-right: none;
+ overflow: visible;
+ text-overflow: clip;
}
.rdg-cell:first-child {
@@ -27,11 +34,18 @@
}
.data-grid--logs-explorer {
- @apply overflow-x-scroll pb-12;
+ @apply pb-12;
+
+ .rdg {
+ overflow-x: auto;
+ min-width: 0;
+ }
.rdg-cell,
.rdg-cell span {
@apply text-foreground-light font-normal #{!important};
+ overflow: visible;
+ text-overflow: clip;
}
.rdg-cell:first-child {